Skip to content

Strict patch

Strict patch #1893

Workflow file for this run

name: Python
on:
push:
branches:
- main
- autoupdate/strict
- 'release-[0-9]+.[0-9]+'
- 'release-[0-9]+.[0-9]+-strict'
pull_request:
branches:
- main
- 'release-[0-9]+.[0-9]+'
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: '3.10'
- name: Install tox
run: pip install tox
- name: Lint
run: |
cd tests/integration && tox -e lint