Skip to content

Commit

Permalink
m
Browse files Browse the repository at this point in the history
  • Loading branch information
bmwill committed Feb 22, 2024
1 parent e5ebc48 commit a55b37c
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 7 deletions.
21 changes: 15 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,13 +25,22 @@ jobs:
rustc --version
cargo --version
- name: Lint
run: |
cargo fmt -- --check
cargo clippy --all-features --all-targets
- uses: taiki-e/install-action@cargo-hack

- name: feature compatibility
run: cargo hack check --feature-powerset --no-dev-deps

- name: rustfmt
run: cargo fmt -- --check

- name: clippy
run: cargo clippy --all-features --all-targets

# - name: Build Documentation
# run: cargo doc --no-deps
- name: rustdoc
env:
RUSTDOCFLAGS: "--cfg=doc_cfg -Zunstable-options --generate-link-to-definition"
RUSTC_BOOTSTRAP: 1
run: cargo doc --all-features --no-deps

- name: Run tests
run: cargo test --all-features
2 changes: 1 addition & 1 deletion .github/workflows/rustdoc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
- name: Checkout repository
uses: actions/checkout@v4

- name: Build Documentation
- name: rustdoc
env:
RUSTDOCFLAGS: "--cfg=doc_cfg -Zunstable-options --generate-link-to-definition"
RUSTC_BOOTSTRAP: 1
Expand Down

0 comments on commit a55b37c

Please sign in to comment.