Skip to content

Ruff config and module import updates #10

Ruff config and module import updates

Ruff config and module import updates #10

Workflow file for this run

name: CI
on:
workflow_dispatch:
pull_request:
jobs:
python-unit:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
defaults:
run:
working-directory: .
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: 'pip'
cache-dependency-path: '**/pyproject.toml'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install .[test]
- name: Check Python linting (Ruff)
run: ruff check --output-format=github
- name: Check Python formatting (Ruff)
run: ruff format --check
- name: Run unit tests
run: |
pytest
- name: Run Django integration tests
working-directory: ./edtf_django_tests
run: |
python manage.py test edtf_integration