Skip to content

database.py, settings.json #13

database.py, settings.json

database.py, settings.json #13

Workflow file for this run

name: pytest
on:
push:
branches:
- main
pull_request:
branches:
- main
release:
types: [created]
jobs:
run-test-x86-64:
name: test-${{ matrix.python-version }}-x86-64-${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os:
- "ubuntu-latest"
- "windows-latest"
- "macos-latest"
python-version:
- "3.12"
steps:
- name: Checkout repo
uses: actions/checkout@v4
- name: Set up python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Run image
uses: abatilo/actions-poetry@v2
with:
poetry-version: "1.8.2"
- name: Install the project dependencies
run: poetry install
- name: Run the automated tests (for example)
run: poetry run pytest -v