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 f1c0cf1 commit 19c1904Copy full SHA for 19c1904
.github/workflows/build.yml
@@ -41,14 +41,22 @@ jobs:
41
runs-on: ${{ matrix.os }}
42
steps:
43
- uses: actions/checkout@v2
44
+
45
- name: Set up Python ${{ matrix.python-version }}
46
uses: actions/setup-python@v2
47
with:
48
python-version: ${{ matrix.python-version }}
49
+ - uses: actions/cache@v2
50
+ with:
51
+ path: ~/.cache/pip
52
+ key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
53
+ restore-keys: |
54
+ ${{ runner.os }}-pip-
55
56
- name: Install dependencies
57
run: |
58
python -m pip install --upgrade pip
59
pip install -r requirements.txt
60
- - run: cp .proselintrc ~/
61
+ - run: cp .proselintrc ~/
62
- run: proselint src/content
0 commit comments