Skip to content

Update Coq and CI versions (#336) #309

Update Coq and CI versions (#336)

Update Coq and CI versions (#336) #309

Workflow file for this run

name: Lint
on:
push:
branches:
- main
pull_request:
branches:
- '**'
paths:
- '.github/workflows/lint.yml'
- 'tox.ini'
- 'setup.cfg'
- '.pylintrc'
- '**.py'
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.10'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install tox
- name: Run linters
run: tox -e check-all