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 bc02b3e commit dea3e3eCopy full SHA for dea3e3e
.flake8
@@ -1,5 +1,4 @@
1
[flake8]
2
-
3
max-line-length = 90
4
ignore =
5
# irrelevant plugins
.github/workflows/ci.yml
@@ -40,19 +40,12 @@ jobs:
40
41
steps:
42
- uses: actions/checkout@v2
43
44
- - name: Set up Python
+ - name: Set up Python 3
45
uses: actions/setup-python@v2
46
with:
47
- python-version: 3.9
48
49
- - name: Load pip cache
50
- uses: actions/cache@v2
51
- with:
52
- path: ~/.cache/pip
53
- key: ${{ runner.os }}-pip-${{ hashFiles('**/test-requirements.txt') }}
54
- restore-keys: |
55
- ${{ runner.os }}-pip-
+ python-version: 3
+ cache: "pip"
+ cache-dependency-path: "test-requirements.txt"
56
57
- name: Install dependencies
58
run: |
0 commit comments