Skip to content

[CI] Upgrade clang to 17.0.x #261

[CI] Upgrade clang to 17.0.x

[CI] Upgrade clang to 17.0.x #261

Workflow file for this run

name: python checks
on:
push:
paths:
- '**.py'
- '.github/workflows/python.yml'
pull_request:
paths:
- '**.py'
- '.github/workflows/python.yml'
jobs:
flake8:
strategy:
fail-fast: false
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: '3.9'
- name: flake8
run: |
pip install flake8==4.0.1
flake8 --ignore E402,F405,W504,E741