File tree Expand file tree Collapse file tree 2 files changed +10
-26
lines changed
Expand file tree Collapse file tree 2 files changed +10
-26
lines changed Original file line number Diff line number Diff line change 11# Maintained in https://github.com/coreos/repo-templates
22# Do not edit downstream.
33
4+ # Updates are grouped together by ecosystem in a single PR. An update can be
5+ # removed from a combined update PR via comments to dependabot:
6+ # https://docs.github.com/en/code-security/dependabot/working-with-dependabot/managing-pull-requests-for-dependency-updates#managing-dependabot-pull-requests-for-grouped-updates-with-comment-commands
7+
48version : 2
59updates :
6- - package-ecosystem : " github-actions"
7- directory : " /"
8- schedule :
9- interval : " weekly"
10- labels : ["skip-notes"]
11- open-pull-requests-limit : 3
1210 - package-ecosystem : cargo
1311 directory : /
1412 schedule :
1513 interval : weekly
1614 open-pull-requests-limit : 10
1715 labels :
1816 - dependency
17+
18+ groups :
19+ build :
20+ patterns :
21+ - " *"
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ concurrency:
1818env :
1919 CARGO_TERM_COLOR : always
2020 # Pinned toolchain for linting
21- ACTIONS_LINTS_TOOLCHAIN : 1.86 .0
21+ ACTIONS_LINTS_TOOLCHAIN : 1.90 .0
2222
2323jobs :
2424 tests-stable :
@@ -117,22 +117,3 @@ jobs:
117117 run : cargo build --all-targets
118118 - name : cargo test
119119 run : cargo test --all-targets
120- build-and-test :
121- name : Build and test on ${{ matrix.host }}
122- runs-on : ${{ matrix.host }}
123- strategy :
124- matrix :
125- host : [windows-latest, macos-latest]
126- steps :
127- - name : Check out repository
128- uses : actions/checkout@v6
129- - name : Install toolchain
130- uses : dtolnay/rust-toolchain@v1
131- with :
132- toolchain : stable
133- - name : Cache build artifacts
134- uses : Swatinem/rust-cache@v2
135- - name : cargo build
136- run : cargo build --all-targets
137- - name : cargo test
138- run : cargo test --all-targets
You can’t perform that action at this time.
0 commit comments