Skip to content

Commit 500b04b

Browse files
authored
Merge pull request #62 from mulkieran/extend-ci-a-bit
Extend ci a bit
2 parents 607657b + d4cefa2 commit 500b04b

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,8 @@ jobs:
6363
run: make -f Makefile fmt-ci
6464
- name: Run cargo clippy
6565
run: make -f Makefile clippy
66+
- name: Run doc tests
67+
run: make -f Makefile doc-test
6668

6769
dependencies:
6870
runs-on: ubuntu-latest

Makefile

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,11 +40,15 @@ audit:
4040
build:
4141
cargo ${BUILD}
4242

43+
doc-test:
44+
cargo test --doc
45+
4346
.PHONY:
4447
audit
4548
build
4649
check-fedora-versions
4750
clippy
51+
doc-test
4852
fmt
4953
fmt-ci
5054
test-compare-fedora-versions

0 commit comments

Comments
 (0)