Skip to content

Back to development: 1.6.2 #286

Back to development: 1.6.2

Back to development: 1.6.2 #286

Workflow file for this run

name: Python package
on:
push:
branches:
- master
pull_request:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
include:
- python-version: "3.8"
django-version: "2.*"
- python-version: "3.9"
django-version: "3.*"
- python-version: "3.10"
django-version: "4.*"
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -e .[test] django==${{ matrix.django-version }}
- name: Test with pytest
run: |
pytest --cov=nens_auth_client