Skip to content

Increased test coverage #15

Increased test coverage

Increased test coverage #15

Workflow file for this run

name: Pytest with minimum 95% coverage
on:
push:
branches:
- master
pull_request:
jobs:
build:
name: Test with ${{matrix.python}} on Ubuntu
runs-on: ubuntu-latest
strategy:
matrix:
python: ["3.9", "3.10"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python }}
- name: Login to GitHub Container Registry
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GHCR_PAT }}
- name: Install Dependencies
run: pip install nox poetry
- name: Run tests with Nox
run: nox -s lint tests_github --verbose