Skip to content

Merge pull request #86 from uktrade/dependabot/npm_and_yarn/pug-3.0.3 #63

Merge pull request #86 from uktrade/dependabot/npm_and_yarn/pug-3.0.3

Merge pull request #86 from uktrade/dependabot/npm_and_yarn/pug-3.0.3 #63

Workflow file for this run

name: Test
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
test:
name: Test
strategy:
matrix:
# If changing how many times tests are run, must also change in codecov.yml
# to ensure test coverage is reported only after all tests have finished
include:
- python-version: "3.6.7"
os: "ubuntu-20.04"
- python-version: "3.7.1"
os: "ubuntu-20.04"
- python-version: "3.8.0"
os: "ubuntu-20.04"
- python-version: "3.9.0"
os: "ubuntu-20.04"
- python-version: "3.10.0"
os: "ubuntu-20.04"
runs-on: ${{ matrix.os }}
steps:
- name: "Checkout"
uses: "actions/checkout@v3"
- uses: "actions/setup-python@v4"
with:
python-version: '${{ matrix.python-version }}'
- name: "Install python dependencies"
run: |
pip install ".[ci]"
- name: "Run tests"
run: |
coverage run -m unittest -v
- uses: codecov/codecov-action@v3