Skip to content

build: dropped link workflow in favour of pre-commit.ci #34

build: dropped link workflow in favour of pre-commit.ci

build: dropped link workflow in favour of pre-commit.ci #34

Workflow file for this run

name: tests
on:
push:
pull_request:
concurrency:
group: ${{ github.head_ref || github.run_id }}
cancel-in-progress: true
jobs:
tests:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10"]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
with:
python-version: "3.10"
cache: pip
- name: install dependencies
run: |
python -m pip install --upgrade pip
pip install tox tox-gh-actions
- name: test with tox
run: tox