We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 357ee52 + eb982e2 commit 1754437Copy full SHA for 1754437
1 file changed
.github/workflows/ubuntu22.yml
@@ -0,0 +1,15 @@
1
+name: Ubuntu 22.04 CI (GCC 11)
2
+
3
+on: [push, pull_request]
4
5
+jobs:
6
+ ubuntu-build:
7
+ if: >-
8
+ ! contains(toJSON(github.event.commits.*.message), '[skip ci]') &&
9
+ ! contains(toJSON(github.event.commits.*.message), '[skip github]')
10
+ runs-on: ubuntu-22.04
11
+ steps:
12
+ - uses: actions/checkout@v3
13
+ - name: Use make
14
+ run: |
15
+ make && ./unit
0 commit comments