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