Skip to content

compiler: Improve alias scheduling #9078

compiler: Improve alias scheduling

compiler: Improve alias scheduling #9078

Workflow file for this run

name: Flake8
permissions:
contents: read
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
on:
# Trigger the workflow on push or pull request,
# but only for the main branch
push:
branches:
- main
pull_request:
branches:
- main
jobs:
flake8:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Set up Python 3.10
uses: actions/setup-python@v6
with:
python-version: "3.10"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install flake8-pyproject
- name: Lint with flake8
run: |
flake8 --builtins=ArgumentError .