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.
2 parents 607657b + d4cefa2 commit 500b04bCopy full SHA for 500b04b
.github/workflows/ci.yml
@@ -63,6 +63,8 @@ jobs:
63
run: make -f Makefile fmt-ci
64
- name: Run cargo clippy
65
run: make -f Makefile clippy
66
+ - name: Run doc tests
67
+ run: make -f Makefile doc-test
68
69
dependencies:
70
runs-on: ubuntu-latest
Makefile
@@ -40,11 +40,15 @@ audit:
40
build:
41
cargo ${BUILD}
42
43
+doc-test:
44
+ cargo test --doc
45
+
46
.PHONY:
47
audit
48
build
49
check-fedora-versions
50
clippy
51
+ doc-test
52
fmt
53
fmt-ci
54
test-compare-fedora-versions
0 commit comments