Merge pull request #12 from nimasmi/chore/python-3-12 #68
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: CI tests | |
on: [push] | |
env: | |
poetry-version: 1.8.2 | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Python "3.9" | |
uses: actions/setup-python@v4 | |
with: | |
python-version: "3.9" | |
- uses: pre-commit/[email protected] | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"] | |
django-version: ["3.2.9", "4.1.3", "4.2", "5.0.2"] | |
exclude: | |
# Django too old | |
- django-version: "3.2.9" | |
python-version: "3.11" | |
- django-version: "3.2.9" | |
python-version: "3.12" | |
# Django too new | |
- django-version: "5.0.2" | |
python-version: "3.8" | |
- django-version: "5.0.2" | |
python-version: "3.9" | |
- django-version: "5.0.2" | |
python-version: "3.10" | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Run image | |
uses: abatilo/actions-poetry@v2 | |
with: | |
poetry-version: ${{ env.poetry-version }} | |
- name: Cache Poetry virtual env | |
uses: actions/cache@v2 | |
env: | |
cache-name: cache-poetry-virtualenv | |
with: | |
path: .venv | |
key: ${{ runner.os }}-python-${{ matrix.python-version }}-django-${{ matrix.django-version }}-${{ hashFiles('pyproject.toml') }} | |
- name: Install packages | |
run: | | |
poetry config virtualenvs.in-project true | |
poetry remove django | |
poetry add django==${{ matrix.django-version }} --python ${{ matrix.python-version }} | |
poetry install | |
poetry show django | |
test: | |
runs-on: ubuntu-latest | |
needs: [build, lint] | |
strategy: | |
matrix: | |
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"] | |
django-version: ["3.2.9", "4.1.3", "4.2", "5.0.2"] | |
exclude: | |
# Django too old | |
- django-version: "3.2.9" | |
python-version: "3.11" | |
- django-version: "3.2.9" | |
python-version: "3.12" | |
# Django too new | |
- django-version: "5.0.2" | |
python-version: "3.8" | |
- django-version: "5.0.2" | |
python-version: "3.9" | |
- django-version: "5.0.2" | |
python-version: "3.10" | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v2 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Run image | |
uses: abatilo/[email protected] | |
with: | |
poetry-version: ${{ env.poetry-version }} | |
- name: Cache Poetry virtual env | |
uses: actions/cache@v2 | |
env: | |
cache-name: cache-poetry-virtualenv | |
with: | |
path: .venv | |
key: ${{ runner.os }}-python-${{ matrix.python-version }}-django-${{ matrix.django-version }}-${{ hashFiles('pyproject.toml') }} | |
- name: Test | |
run: | | |
poetry run python runtests.py |