Skip to content

Bump minimum supported Python version from 3.8 to 3.9 (#116) #154

Bump minimum supported Python version from 3.8 to 3.9 (#116)

Bump minimum supported Python version from 3.8 to 3.9 (#116) #154

Workflow file for this run

name: Tests
permissions:
contents: read
on:
push:
branches: main
pull_request:
jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- name: Setup Python
uses: actions/setup-python@v1
with:
python-version: 3.9
- name: Check out code
uses: actions/checkout@v2
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install poetry
poetry install
- name: Test
run: |
poetry run pytest src/tests --cov=./ --cov-report=xml