We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 63cee7f commit c569624Copy full SHA for c569624
.github/workflows/pylint.yml
@@ -9,17 +9,17 @@ jobs:
9
- uses: actions/checkout@v2
10
- uses: actions/setup-python@v2
11
with:
12
- python-version: '3.9'
+ python-version: "3.9"
13
- name: Cache Pip
14
- uses: actions/cache@v2
+ uses: actions/cache@v4
15
16
path: ~/.cache/pip
17
key: ${{ runner.os }}-${{ github.job }}-pip-${{ github.sha }}
18
restore-keys: |
19
- ${{ runner.os }}-${{ github.job }}-pip-
+ ${{ runner.os }}-${{ github.job }}-pip-
20
- name: Install python libraries
21
- run : |
+ run: |
22
python3 -m pip install --upgrade pip
23
python3 -m pip install flake8 flake8-bugbear
24
- name: Run python linting
25
- run : python3 -m flake8
+ run: python3 -m flake8
0 commit comments