Skip to content

fix: update matrix #117

fix: update matrix

fix: update matrix #117

Workflow file for this run

name: Run tests

Check failure on line 1 in .github/workflows/run-tests.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/run-tests.yml

Invalid workflow file

No steps defined in `steps` and no workflow called in `uses` for the following jobs: build
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macos-latest, ubuntu-latest]
python-version: [3.9, "3.10"]
django-version: [3.2, 4.0, 4.1, 4.2]
include:
- os: macos-latest
python-version: "3.10"
django-version: "5.0"
- os: ubuntu-latest
python-version: "3.10"
django-version: "5.0"
- os: macos-latest
python-version: "3.10"
django-version: "5.0.3"
- os: ubuntu-latest
python-version: "3.10"
django-version: "5.0.3"
steps:
- name: Install system dependencies (windows)
if: matrix.os == 'windows-latest'
uses: msys2/setup-msys2@v2
with:
update: true
install: zlib
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
pip install -q Django==${{ matrix.django-version }}
python -m pip install --upgrade pip
python setup.py install
- name: Test with pytest
run: |
python runtests.py