Skip to content
Open
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
5 changes: 4 additions & 1 deletion .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,10 @@ jobs:
run: cargo build -v
- name: test
if: ${{ matrix.rust != '1.88.0' }}
run: cargo test -v && cargo doc -v
run: cargo test -v
- name: doc
if: ${{ matrix.rust != '1.88.0' }}
run: RUSTDOCFLAGS="-D warnings" cargo doc --no-deps -v

test_other_archs:
# github actions does not support 32-bit or big endian systems directly, but
Expand Down
Loading