blob: d9db80e9cebde94ccb6b7541161757db23e9bdef (
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@v3
- run: pacman --noconfirm -Syu python python-pip
- run: python -m pip install --upgrade pip
- run: pip install flake8
- name: Lint with flake8
run: flake8
|