Skip to content

Da 24/reading comprehension #131

Da 24/reading comprehension

Da 24/reading comprehension #131

Workflow file for this run

name: PR Test
on:
pull_request:
branches:
- main
paths:
- "dalm/**"
- "tests/**"
jobs:
check_backend_changes:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version-file: ".python-version"
cache: pip
cache-dependency-path: "**/pyproject.toml"
- name: install invoke
run: pip install invoke
- name: install dependencies
run: inv install --no-editable
- name: Run inv lint
run: inv lint
- name: Run tests
run: inv test