Skip to content

Commit 7fd59c4

Browse files
committed
ci: ignore macos graphviz failure [skip ci]
1 parent 8ebf496 commit 7fd59c4

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

.github/workflows/ci.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88

99
jobs:
1010
Test:
11-
if: "!contains(github.event.head_commit.message, '[skip ci]')"
11+
if: ${{ !contains(github.event.head_commit.message, '[skip ci]') }}
1212
runs-on: ${{ matrix.os }}
1313
strategy:
1414
fail-fast: false
@@ -83,13 +83,14 @@ jobs:
8383
doxygen: true
8484

8585
- name: Test
86+
if: ${{ !cancelled() }}
8687
run: |
8788
task test
8889
env:
8990
CMAKE_GENERATOR: ${{ matrix.cmake_generator }}
9091

9192
- name: Lint
92-
if: ${{ matrix.os == 'ubuntu-20.04' && matrix.compiler == 'gcc' }}
93+
if: ${{ !cancelled() && matrix.os == 'ubuntu-20.04' && matrix.compiler == 'gcc' }}
9394
run: |
9495
# TODO add to setup-cpp
9596
python3 -m pip install --user cmakelint cmake-format

0 commit comments

Comments
 (0)