Commit eb3f402 1 parent 838a883 commit eb3f402 Copy full SHA for eb3f402
File tree 4 files changed +61
-0
lines changed
4 files changed +61
-0
lines changed Original file line number Diff line number Diff line change
1
+ # To get started with Dependabot version updates, you'll need to specify which
2
+ # package ecosystems to update and where the package manifests are located.
3
+ # Please see the documentation for all configuration options:
4
+ # https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
5
+
6
+ version : 2
7
+ updates :
8
+ - package-ecosystem : " github-actions"
9
+ directory : " /"
10
+ schedule :
11
+ interval : " weekly"
12
+ - package-ecosystem : " cargo" # See documentation for possible values
13
+ directory : " /" # Location of package manifests
14
+ schedule :
15
+ interval : " weekly"
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
+ jobs :
9
+ check :
10
+ permissions :
11
+ checks : write
12
+ uses : joshka/github-workflows/.github/workflows/rust-check.yml@main
13
+ with :
14
+ msrv : 1.74.0
Original file line number Diff line number Diff line change
1
+ name : Release
2
+
3
+ permissions :
4
+ pull-requests : write
5
+ contents : write
6
+
7
+ on :
8
+ push :
9
+ branches :
10
+ - main
11
+ workflow_dispatch :
12
+ jobs :
13
+ release-plz :
14
+ uses : joshka/github-workflows/.github/workflows/rust-release-plz.yml@main
15
+ permissions :
16
+ pull-requests : write
17
+ contents : write
18
+ secrets :
19
+ 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