We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
@aml
1 parent 68ad5f4 commit 06d2c4aCopy full SHA for 06d2c4a
.JuliaFormatter.toml
.github/workflows/Format.yml
.github/workflows/ci.yml
@@ -4,6 +4,7 @@ on:
4
- pull_request
5
jobs:
6
test:
7
+ if: "!contains(github.event.head_commit.message, '[skip ci]')"
8
name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }}
9
runs-on: ${{ matrix.os }}
10
strategy:
@@ -29,3 +30,11 @@ jobs:
29
30
- uses: julia-actions/julia-uploadcodecov@latest
31
env:
32
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
33
+
34
35
+ Skip:
36
+ if: "contains(github.event.head_commit.message, '[skip ci]')"
37
+ runs-on: ubuntu-latest
38
+ steps:
39
+ - name: Skip CI 🚫
40
+ run: echo skip ci
0 commit comments