-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
6c25312
commit f03d1ef
Showing
1 changed file
with
6 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,13 +10,16 @@ on: | |
|
||
jobs: | ||
|
||
# We're using nightly for the async traits. | ||
# TODO: Revert back to stable when that is stabilized. | ||
|
||
build_redpallas: | ||
name: Build with redpallas | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/[email protected] | ||
- uses: dtolnay/rust-toolchain@stable | ||
- uses: dtolnay/rust-toolchain@nightly | ||
- run: cargo build --features redpallas | ||
|
||
clippy: | ||
|
@@ -30,7 +33,7 @@ jobs: | |
|
||
- uses: actions-rs/[email protected] | ||
with: | ||
toolchain: stable | ||
toolchain: nightly | ||
override: true | ||
|
||
- name: Check workflow permissions | ||
|
@@ -68,7 +71,7 @@ jobs: | |
|
||
- uses: actions-rs/[email protected] | ||
with: | ||
toolchain: stable | ||
toolchain: nightly | ||
components: rustfmt | ||
override: true | ||
|
||
|