-
Notifications
You must be signed in to change notification settings - Fork 314
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
f00e3ae
commit 22c6786
Showing
1 changed file
with
10 additions
and
1 deletion.
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 |
---|---|---|
|
@@ -49,12 +49,21 @@ jobs: | |
components: rustfmt | ||
- run: cargo fmt --check | ||
|
||
semver-checks: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: obi1kenobi/[email protected] | ||
with: | ||
rust-toolchain: stable | ||
feature-group: all-features | ||
|
||
# Used to signal to branch protections that all other jobs have succeeded. | ||
all-jobs-succeed: | ||
name: All checks succeeded | ||
if: success() | ||
runs-on: ubuntu-latest | ||
needs: [check, msrv, test, check-format] | ||
needs: [check, msrv, test, check-format, semver-checks] | ||
steps: | ||
- name: Mark the job as successful | ||
run: exit 0 |