Skip to content

Commit 6125e2a

Browse files
committed
merge queue
1 parent 49aefa1 commit 6125e2a

File tree

4 files changed

+21
-15
lines changed

4 files changed

+21
-15
lines changed

.github/bors.toml

Lines changed: 0 additions & 11 deletions
This file was deleted.

.github/workflows/ci.yml

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,22 @@
11
on:
22
push:
3-
branches: [ staging, trying, master ]
3+
branches: master
44
pull_request:
5+
merge_group:
56

67
name: Continuous integration
78

89
jobs:
910
ci:
11+
name: CI
12+
runs-on: ubuntu-latest
13+
needs: [check]
14+
if: always()
15+
steps:
16+
- name: Done
17+
run: jq --exit-status 'all(.result == "success")' <<< '${{ toJson(needs) }}'
18+
19+
check:
1020
runs-on: ubuntu-latest
1121
strategy:
1222
matrix:
@@ -33,7 +43,7 @@ jobs:
3343
- uses: actions-rs/cargo@v1
3444
with:
3545
command: check
36-
args: --features=${{ matrix.mcu }},rt --examples
46+
args: --features=${{ matrix.mcu }},rtic,high,stm32-usbd --examples
3747

3848
- uses: actions-rs/cargo@v1
3949
with:

.github/workflows/clippy.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
1-
on: [push, pull_request]
1+
on:
2+
push:
3+
branches: master
4+
pull_request:
25

36
name: Clippy check
47
jobs:

.github/workflows/rustfmt.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
1-
on: [push, pull_request]
1+
on:
2+
push:
3+
branches: master
4+
pull_request:
5+
merge_group:
26

37
name: Code formatting check
48

0 commit comments

Comments
 (0)