Skip to content
This repository was archived by the owner on Apr 5, 2024. It is now read-only.

Commit abbacd5

Browse files
committed
Add github workflow for toolchain consistency check
Implements #308
1 parent 3f1ea11 commit abbacd5

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed
+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
name: Toolchain version consistency
2+
3+
on:
4+
pull_request:
5+
types: [opened, synchronize, reopened]
6+
7+
jobs:
8+
version_consistency_check:
9+
name: Toolchain version consistency check
10+
runs-on: ubuntu-latest
11+
steps:
12+
- uses: actions/checkout@v3
13+
- name: Run check
14+
run: scripts/toolchain-version -c
15+

0 commit comments

Comments
 (0)