We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8ebf496 commit 7fd59c4Copy full SHA for 7fd59c4
1 file changed
.github/workflows/ci.yml
@@ -8,7 +8,7 @@ on:
8
9
jobs:
10
Test:
11
- if: "!contains(github.event.head_commit.message, '[skip ci]')"
+ if: ${{ !contains(github.event.head_commit.message, '[skip ci]') }}
12
runs-on: ${{ matrix.os }}
13
strategy:
14
fail-fast: false
@@ -83,13 +83,14 @@ jobs:
83
doxygen: true
84
85
- name: Test
86
+ if: ${{ !cancelled() }}
87
run: |
88
task test
89
env:
90
CMAKE_GENERATOR: ${{ matrix.cmake_generator }}
91
92
- name: Lint
- if: ${{ matrix.os == 'ubuntu-20.04' && matrix.compiler == 'gcc' }}
93
+ if: ${{ !cancelled() && matrix.os == 'ubuntu-20.04' && matrix.compiler == 'gcc' }}
94
95
# TODO add to setup-cpp
96
python3 -m pip install --user cmakelint cmake-format
0 commit comments