Lines Matching +full:runs +full:- +full:on
4 on:
7 - "**.py"
8 - "requirements.txt"
13 runs-on: ubuntu-latest
16 python-version: [3.6, 3.7, 3.8]
19 - name: Checkout
21 - name: Set up Python environment
22 uses: actions/setup-python@master
24 python-version: ${{ matrix.python-version }}
25 - name: Install dependencies
28 pip install --upgrade pip
29 pip install -r requirements.txt
30 - name: Lint with flake8
33 flake8 . --config=.flake8 --benchmark