Commit 7273147 1 parent 67d210f commit 7273147 Copy full SHA for 7273147
File tree 4 files changed +36
-47
lines changed
4 files changed +36
-47
lines changed Original file line number Diff line number Diff line change
1
+ name : Check
2
+
3
+ on :
4
+ push :
5
+ branches :
6
+ - main
7
+ pull_request :
8
+
9
+ jobs :
10
+ check :
11
+ permissions :
12
+ checks : write
13
+ uses : joshka/github-workflows/.github/workflows/rust-check.yml@main
14
+ with :
15
+ msrv : 1.76.0 # this is optional defaults to 1.56.0
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1
- name : Release-plz
2
- # see https://marcoieni.github.io/release-plz/github/index.html#example-release-pr-and-release
3
- # for more information
1
+ name : Release
4
2
5
3
permissions :
6
4
pull-requests : write
7
5
contents : write
8
6
9
7
on :
8
+ workflow_dispatch :
10
9
push :
11
10
branches :
12
11
- main
13
12
14
13
jobs :
15
14
release-plz :
16
- name : Release-plz
17
- runs-on : ubuntu-latest
18
- steps :
19
- - name : Checkout repository
20
- uses : actions/checkout@v4
21
- with :
22
- fetch-depth : 0
23
- - name : Install Rust toolchain (stable)
24
- uses : dtolnay/rust-toolchain@stable
25
- - name : Run release-plz
26
-
27
- env :
28
- GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
29
- CARGO_REGISTRY_TOKEN : ${{ secrets.CARGO_REGISTRY_TOKEN }}
15
+ uses : joshka/github-workflows/.github/workflows/rust-release-plz.yml@main
16
+ permissions :
17
+ pull-requests : write
18
+ contents : write
19
+ secrets :
20
+ CARGO_REGISTRY_TOKEN : ${{ secrets.CARGO_REGISTRY_TOKEN }}
Original file line number Diff line number Diff line change
1
+ name : Test
2
+
3
+ on :
4
+ push :
5
+ branches :
6
+ - main
7
+ pull_request :
8
+
9
+ jobs :
10
+ test :
11
+ uses : joshka/github-workflows/.github/workflows/rust-test.yml@main
12
+ secrets :
13
+ CODECOV_TOKEN : ${{ secrets.CODECOV_TOKEN }}
You can’t perform that action at this time.
0 commit comments