Skip to content

Bump lint dependencies #42

Bump lint dependencies

Bump lint dependencies #42

Workflow file for this run

name: build
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
ubuntu-tox-python-matrix:
name: Run tox on a Ubuntu latest system, with a matrix of Python versions
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.11]
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install Tox and any other packages
run: pip install tox
- name: Run Tox
run: tox
- name: Archive code coverage results
uses: actions/upload-artifact@v3
with:
name: code-coverage-report
path: .tox/htmlcov/