Skip to content

Commit

Permalink
Update workflows to test current versions
Browse files Browse the repository at this point in the history
  • Loading branch information
julianwachholz committed Nov 16, 2023
1 parent 7a02ef2 commit 2381aeb
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 144 deletions.
68 changes: 0 additions & 68 deletions .github/workflows/test-mysql.yml

This file was deleted.

67 changes: 0 additions & 67 deletions .github/workflows/test-pg.yml

This file was deleted.

15 changes: 6 additions & 9 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,26 +14,23 @@ jobs:
strategy:
max-parallel: 4
matrix:
python-version: ["3.6", "3.7", "3.8", "3.9"]
django-version: ["1.11.29", "2.2.13", "3.0.7", "3.1.2", "3.2.4"]
include:
- python-version: "3.10"
django-version: "4.0.4"
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
django-version: ["3.2", "4.2", "5.0b1"]
steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install tooling
run: |
python -mpip install poetry; python -mpip install six
python -m pip install poetry==1.7.0
- name: Install dependencies
run: |
poetry install
- name: Setup Django ${{ matrix.django-version }}
run: |
poetry run pip install django==${{ matrix.django-version }}
poetry run pip install --pre django==${{ matrix.django-version }}
- name: Lint with flake
run: |
poetry run flake8 django_sqids
Expand Down

0 comments on commit 2381aeb

Please sign in to comment.