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
5 changes: 3 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ env:
CARGO_TERM_COLOR: always
CARGO_BUILD_WARNINGS: deny
RUST_BACKTRACE: full
SCCACHE_GHA_ENABLED: "true"

concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.ref }}
Expand Down Expand Up @@ -112,10 +113,10 @@ jobs:
with:
persist-credentials: false

- name: Install stable Rust toolchain
- name: Install nightly Rust toolchain
uses: dtolnay/rust-toolchain@2c7215f132e9ebf062739d9130488b56d53c060c # master
with:
toolchain: stable
toolchain: nightly

- name: Install sccache
uses: mozilla-actions/sccache-action@fc920bf0ec8de6ee65d409111f7ec508035751ba # v0.0.11
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ test-unit: ## Run deterministic unit and integration tests.

.PHONY: test-doc
test-doc: ## Run doc tests.
cargo test \
cargo +nightly test \
--doc \
--workspace \
--all-features \
Expand Down
Loading