Skip to content

Commit

Permalink
Update ci.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Owen-CH-Leung committed Oct 18, 2023
1 parent f00e3ae commit 22c6786
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 22c6786

Please sign in to comment.