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.
1 parent ad70083 commit 9572f54Copy full SHA for 9572f54
.github/workflows/check.yml
@@ -0,0 +1,14 @@
1
+# .github/workflows/check.yml
2
+on:
3
+ push:
4
+ branches:
5
+ - master
6
+ pull_request:
7
+
8
+jobs:
9
+ check:
10
+ permissions:
11
+ checks: write
12
+ uses: joshka/github-workflows/.github/workflows/rust-check.yml@main
13
+ with:
14
+ msrv: 1.56.0 # this is optional defaults to 1.56.0
.github/workflows/test.yml
+# .github/workflows/test.yml
+ test:
+ uses: joshka/github-workflows/.github/workflows/rust-test.yml@main
+ crate_type: lib # (optional) change to bin to avoid running cargo test --doc
+ secrets:
+ CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
0 commit comments