We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e244c35 commit 6313e6fCopy full SHA for 6313e6f
.github/workflows/ci.yml
@@ -17,7 +17,7 @@ concurrency:
17
18
jobs:
19
linux:
20
- if: "!contains(github.event.pull_request.labels.*.name, 'skip ci')"
+ if: contains(github.event.pull_request.labels.*.name, 'skip ci') != true
21
runs-on: ubuntu-20.04
22
env:
23
MIX_ENV: test
@@ -46,7 +46,7 @@ jobs:
46
mix test
47
48
windows:
49
50
runs-on: windows-latest
51
52
@@ -69,7 +69,7 @@ jobs:
69
mix test --exclude postgresql
70
71
macos:
72
73
runs-on: macos-13
74
75
0 commit comments