Skip to content

Update Todo model + API actions #9

Update Todo model + API actions

Update Todo model + API actions #9

Workflow file for this run

name: Run tests
on: [ pull_request ]
jobs:
lint-and-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install Python
# https://github.com/actions/setup-python
uses: actions/setup-python@v4
with:
python-version: '3.11.5'
- name: Install poetry
uses: abatilo/actions-poetry@v2
- name: Setup a local virtual environment (if no poetry.toml file)
run: |
poetry config virtualenvs.create true --local
poetry config virtualenvs.in-project true --local
- uses: actions/cache@v3
name: Define a cache for the virtual environment based on the dependencies lock file
with:
path: ./.venv
key: venv-${{ hashFiles('poetry.lock') }}
- name: Install the project dependencies
run: poetry install
- name: Get changed files
id: changed-files
uses: tj-actions/changed-files@v35
with:
files: '**/*.py'
- name: Run linters
run: poetry run pre-commit run --files ${{ steps.changed-files.outputs.all_changed_files }}
- name: Run tests
run: poetry run invoke pytest