Skip to content

Update matrix to recent version #26

Update matrix to recent version

Update matrix to recent version #26

Workflow file for this run

name: Django CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
max-parallel: 4
matrix:
python-version: ['3.9', '3.10', '3.11', '3.12']
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install Dependencies
run: |
pip --disable-pip-version-check install --no-compile -r requirements_tests.txt
- name: Run Tests
run: |
pytest --cov=testapp --cov=tpay_module --cov-report term-missing
flake8 .