We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
pr
1 parent a2ec605 commit 4dd5150Copy full SHA for 4dd5150
.github/workflows/ci.yml
@@ -16,6 +16,28 @@ env:
16
17
jobs:
18
19
+ ################
20
+ # Pull Request #
21
22
+
23
+ pr:
24
+ if: ${{ github.event_name == 'pull_request'
25
+ && !contains(github.event.head_commit.message, '[skip ci]') }}
26
+ needs:
27
+ - clippy
28
+ - example
29
+ - feature
30
+ - release-check
31
+ - rustfmt
32
+ - test
33
+ - wasm
34
+ runs-on: ubuntu-latest
35
+ steps:
36
+ - run: true
37
38
39
40
41
##########################
42
# Linting and formatting #
43
0 commit comments