Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
- uses: actions/[email protected]
with:
python-version: "3.11"
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- run: python -m pip install --upgrade black
- run: black --check .

Expand All @@ -17,7 +17,7 @@ jobs:
- uses: actions/[email protected]
with:
python-version: "3.11"
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- run: python -m pip install flake8
- run: flake8

Expand All @@ -27,15 +27,15 @@ jobs:
- uses: actions/[email protected]
with:
python-version: "3.11"
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- run: python -m pip install psycopg isort==5.13.2
- run: isort --diff --check .

docs:
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- run: python -m pip install -r docs/requirements.txt
- run: cd docs/ && make html && make spelling

Expand Down Expand Up @@ -80,7 +80,7 @@ jobs:
uses: actions/[email protected]
with:
python-version: ${{ matrix.python-version }}
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- run: python -m pip install Django==${{ matrix.django-version }}
if: matrix.django-version != 'main'
- run: python -m pip install https://github.com/django/django/archive/main.tar.gz
Expand Down
Loading