Skip to content
This repository was archived by the owner on May 23, 2023. It is now read-only.

Commit 1f129b2

Browse files
remocao de cache
1 parent 92829ce commit 1f129b2

File tree

1 file changed

+6
-8
lines changed

1 file changed

+6
-8
lines changed

.github/workflows/pylint.yml

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ jobs:
1919
setup-environment:
2020
name: Setup deployment environment (Ubuntu 18.04 - Python 3.x)
2121
runs-on: ubuntu-18.04
22-
# runs-on: ubuntu-latest
2322
strategy:
2423
matrix:
2524
python-version: [ "3.8", "3.9", "3.10" ]
@@ -30,14 +29,13 @@ jobs:
3029
with:
3130
python-version: ${{ matrix.python-version }}
3231
architecture: x64
33-
cache: 'pip'
34-
- run: pip install -r requirements.txt
35-
lint:
36-
runs-on: ubuntu-latest
32+
# - run: pip install -r requirements.txt
33+
pylint:
34+
runs-on: ubuntu-18.04
3735
needs: setup-environment
3836
steps:
3937
- name: Execute lint
4038
uses: actions/checkout@v2
41-
with:
42-
cache: 'pip'
43-
- run: pylint ./examples/*/app.py ./examples/*/*
39+
run: |
40+
python -m pip install --upgrade pip
41+
pip install pylint

0 commit comments

Comments
 (0)