Skip to content

Update GitHub Actions #4351

Update GitHub Actions

Update GitHub Actions #4351

Workflow file for this run

name: Code Quality Assurance
on: [ push, pull_request ]
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
if: github.triggering_actor != 'github-actions[bot]'
steps:
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
- name: Set up Python
uses: actions/setup-python@5fda3b95a4ea91299a34e894583c3862153e4b97 # v7.0.0
with:
python-version: '3.14'
- name: Install dependencies
run: |
pip install --upgrade pip setuptools wheel
pip install "tox<4.0.0"
- name: Check code quality with flake8
run: tox -e flake8