Skip to content

Migrate to GHA

Migrate to GHA #1

Workflow file for this run

name: Test
on:
- push
jobs:
build:
name: Python ${{ matrix.python-version }} / ${{ matrix.tox-environment }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
include:
- lint

Check failure on line 15 in .github/workflows/test.yml

View workflow run for this annotation

GitHub Actions / Test

Invalid workflow file

The workflow is not valid. .github/workflows/test.yml (Line: 15, Col: 13): Unexpected value 'lint'
python-version:
- 3.8
- 3.9
tox-environment:
- django32
- django42
env:
TOXENV: ${{ matrix.tox-environment }}
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: pip install tox
- name: Run tests
run: tox