blob: 823be79c9411e9e711e6ea7d5ede9fb1f11c3ce4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
on: [ push, pull_request ]
name: flake8 linting (15 ignores)
jobs:
flake8:
runs-on: ubuntu-latest
container:
image: archlinux:latest
steps:
- uses: actions/checkout@v4
- run: pacman --noconfirm -Syu python python-pip
- run: pip install --break-system-packages --upgrade pip
- run: pip install --break-system-packages flake8
- name: Lint with flake8
run: flake8
|