Skip to content

feat: #20 Add GET method for course content API to list quiz and less… #65

feat: #20 Add GET method for course content API to list quiz and less…

feat: #20 Add GET method for course content API to list quiz and less… #65

Workflow file for this run

name: PR Checks
on:
pull_request:
branches: [master]
types: [opened, synchronize, reopened, updated]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.11, 3.12, 3.13, 3.14]
steps:
- name: Checkout code
uses: actions/checkout@v6
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
- name: Install Poetry
run: |
curl -sSL https://install.python-poetry.org | python3 -
echo "$HOME/.local/bin" >> $GITHUB_PATH
- name: Install dependencies
run: make dev-install
- name: Run pre-commit
run: make pre-commit
- name: Run tests
run: make test