Skip to content

Commit

Permalink
ci: ignore macos graphviz failure [skip ci]
Browse files Browse the repository at this point in the history
  • Loading branch information
aminya committed Feb 1, 2024
1 parent 8ebf496 commit 7fd59c4
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:

jobs:
Test:
if: "!contains(github.event.head_commit.message, '[skip ci]')"
if: ${{ !contains(github.event.head_commit.message, '[skip ci]') }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
Expand Down Expand Up @@ -83,13 +83,14 @@ jobs:
doxygen: true

- name: Test
if: ${{ !cancelled() }}
run: |
task test
env:
CMAKE_GENERATOR: ${{ matrix.cmake_generator }}

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

0 comments on commit 7fd59c4

Please sign in to comment.