-
Notifications
You must be signed in to change notification settings - Fork 1
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
2fe816d
commit 0d189ab
Showing
1 changed file
with
5 additions
and
4 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 |
---|---|---|
|
@@ -21,14 +21,15 @@ jobs: | |
- name: Configure sccache | ||
run: echo "RUSTC_WRAPPER=sccache" >> $GITHUB_ENV; echo "SCCACHE_GHA_ENABLED=true" >> $GITHUB_ENV | ||
- name: Run sccache-cache for artifacts | ||
uses: mozilla-actions/sccache-action@v3.0.0 | ||
- name: Fmt | ||
uses: mozilla-actions/sccache-action@v0.04 | ||
- name: cargo fmt -- --check | ||
run: cargo fmt -- --check | ||
- name: cargo-install cargo-auto | ||
uses: baptiste0928/[email protected] | ||
with: | ||
crate: cargo-auto | ||
- name: Build | ||
- name: cargo auto build | ||
run: cargo auto build | ||
- name: Test | ||
- name: cargo auto test | ||
run: cargo auto test | ||
|