Skip to content

Commit b35e82b

Browse files
committed
ci(tests): fix test docs
1 parent 8d86b2c commit b35e82b

File tree

1 file changed

+10
-2
lines changed

1 file changed

+10
-2
lines changed

.github/workflows/tests.yml

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,30 +12,38 @@ jobs:
1212
matrix:
1313
python-version: ['3.9']
1414
steps:
15-
- uses: actions/checkout@v2
15+
- name: Checkout repo
16+
uses: actions/checkout@v2
17+
1618
- name: Set up Python ${{ matrix.python-version }}
1719
uses: actions/setup-python@v2
1820
with:
1921
python-version: ${{ matrix.python-version }}
22+
2023
- name: Cache dependencies
2124
uses: actions/cache@v2
2225
with:
2326
path: ~/.cache/pip
2427
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements*.txt') }}
2528
restore-keys: |
2629
${{ runner.os }}-pip-
30+
2731
- name: Install dependencies
2832
run: make install
33+
2934
- name: Cache pre-commit
3035
uses: actions/cache@v2
3136
with:
3237
path: ~/.cache/pre-commit
3338
key: pre-commit-2-${hashFile('.pre-commit-config.yaml')}
3439
restore-keys: |
3540
pre-commit-2-
41+
3642
- name: Lint
3743
run: SKIP=no-commit-to-branch make lint
44+
3845
- name: Test
3946
run: make test
47+
4048
- name: Test documentation
41-
run: make build-docs
49+
run: make docs-build

0 commit comments

Comments
 (0)