Adopt pyright, wanted for future work. #336
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test | |
on: [push, pull_request, workflow_dispatch] | |
permissions: | |
contents: read | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout the repo | |
uses: actions/checkout@v4 | |
- name: Set up Python 3.12 | |
uses: actions/setup-python@v5 | |
with: | |
python-version: 3.12 | |
cache: pip | |
cache-dependency-path: pyproject.toml | |
- name: Set up nodejs 20.13 | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20.13 | |
cache: npm | |
cache-dependency-path: package-lock.json | |
- name: Install python dependencies | |
run: pip install -r requirements.txt | |
- name: Install nodejs dependencies | |
run: npm install | |
- name: Check formatting | |
run: ruff format --check server | |
- name: Lint | |
run: ruff check server | |
- name: Check types | |
run: npx pyright | |
- name: Run tests | |
run: python manage.py test | |
env: | |
CELERY_ALWAYS_EAGER: "true" | |
SECRET_KEY: "test" | |
BASE_URL: "https://example.com" |