We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fe6eb94 commit dd247e3Copy full SHA for dd247e3
1 file changed
.github/workflows/cabal.yml
@@ -3,12 +3,18 @@ name: Continuous integration
3
on:
4
push:
5
paths-ignore:
6
- - 'website/*/**'
7
- 'README.md'
+ - 'CONTRIBUTING.md'
8
pull_request:
9
10
jobs:
11
continuous-integration:
12
+ # You can skip continuous integration by writing '[ci skip]' or '[skip ci]' in a commit message,
13
+ # which is useful to preserve computing resources
14
+ #
15
+ # For example:
16
+ # > git commit -am "[skip ci] fixed x y z"
17
+ if: contains(toJson(github.event.commits), '[ci skip]') == false && contains(toJson(github.event.commits), '[skip ci]') == false
18
strategy:
19
fail-fast: false
20
matrix:
0 commit comments