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 729e59b commit 648903eCopy full SHA for 648903e
.github/workflows/ci.yml renamed to .github/workflows/lint.yml
@@ -1,4 +1,4 @@
1
-name: CI
+name: Lint
2
on: [push, pull_request]
3
env:
4
BASEDIR: https://raw.githubusercontent.com/open-contracting/standard-maintenance-scripts/master
@@ -10,5 +10,11 @@ jobs:
10
- uses: actions/setup-python@v1
11
with:
12
python-version: 3.6
13
+ - uses: actions/cache@v1
14
+ with:
15
+ path: ~/.cache/pip
16
+ key: ${{ runner.os }}-pip-${{ hashFiles('.github/workflows/lint.yml') }}
17
+ restore-keys: |
18
+ ${{ runner.os }}-pip-
19
- run: curl -s -S --retry 3 $BASEDIR/tests/install.sh | bash -
20
- run: curl -s -S --retry 3 $BASEDIR/tests/script.sh | bash -
0 commit comments