Skip to content

Commit

Permalink
wtf
Browse files Browse the repository at this point in the history
  • Loading branch information
svartalf committed Sep 18, 2019
1 parent a48b685 commit 920ebcd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ jobs:
override: true

- name: Execute tests (not macOS)
if: startsWith(${{ matrix.os }}, 'macOS') == false
if: startsWith(matrix.os, 'macOS') == false
uses: actions-rs/cargo@v1
with:
command: test
Expand All @@ -114,7 +114,7 @@ jobs:
RUSTFLAGS: "-Zprofile -Ccodegen-units=1 -Cinline-threshold=0 -Clink-dead-code -Coverflow-checks=off -Zno-landing-pads"

- name: Execute tests (macOS)
if: startsWith(${{ matrix.os }}, 'macOS') == true
if: startsWith(matrix.os, 'macOS') == true
uses: actions-rs/cargo@v1
with:
command: test
Expand Down

0 comments on commit 920ebcd

Please sign in to comment.