Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,8 @@ jobs:
run: make -f Makefile fmt-ci
- name: Run cargo clippy
run: make -f Makefile clippy
- name: Run doc tests
run: make -f Makefile doc-test

dependencies:
runs-on: ubuntu-latest
Expand Down
4 changes: 4 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -40,11 +40,15 @@ audit:
build:
cargo ${BUILD}

doc-test:
cargo test --doc

.PHONY:
audit
build
check-fedora-versions
clippy
doc-test
fmt
fmt-ci
test-compare-fedora-versions
Expand Down
Loading