Skip to content

refactor: renames views to usage #286

refactor: renames views to usage

refactor: renames views to usage #286

Workflow file for this run

name: Pull Request
on:
pull_request:
concurrency:
group: ${{ github.head_ref }}
cancel-in-progress: true
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version:
- '3.8'
- '3.9'
- '3.10'
- '3.11'
- '3.12'
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- run: make deps
- run: make dev
- run: make test
# Run coverage on one of the builds, doesn't matter which
- if: ${{ matrix.python-version == '3.12' }}
run: make cov-xml
- if: ${{ matrix.python-version == '3.12' }}
uses: orgoro/coverage@v3.1
with:
coverageFile: coverage.xml
thresholdAll: 0.8
token: ${{ secrets.GITHUB_TOKEN }}
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
- run: make deps
- run: make lint