Skip to content

Commit

Permalink
Merge branch 'master' into no_std
Browse files Browse the repository at this point in the history
  • Loading branch information
domenukk committed Jul 12, 2023
2 parents fd98554 + b228574 commit b0bb942
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ on:
push:
branches: ["master"]
pull_request:
merge_group:
types: [checks_requested]

env:
CARGO_NET_GIT_FETCH_WITH_CLI: true
Expand Down Expand Up @@ -82,3 +84,19 @@ jobs:
steps:
- uses: actions/checkout@v3
- uses: EmbarkStudios/cargo-deny-action@v1

Result:
name: Result
runs-on: ubuntu-latest
needs:
- "Test"
- "WASM"
- "Lint"
- "Audit"
steps:
- name: Mark the job as successful
run: exit 0
if: success()
- name: Mark the job as unsuccessful
run: exit 1
if: "!success()"

0 comments on commit b0bb942

Please sign in to comment.