Skip to content

initial commit

initial commit #3

Workflow file for this run

name: Python CI
on:
push:
branches: [main]
pull_request:
branches:
- "**"
jobs:
run_tests:
name: tests
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-22.04]
python-version: ["3.11"]
toxenv: ["django42"]
steps:
- uses: actions/checkout@v7
- name: setup python
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: pip install tox
- name: Run tests
env:
TOXENV: ${{ matrix.toxenv }}
run: tox