We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ef08702 commit d3a2f64Copy full SHA for d3a2f64
.github/workflows/ci.yml
@@ -1,18 +1,19 @@
1
name: CI
2
on:
3
- - push
4
- - pull_request
5
- - workflow_dispatch
+ push:
+ branches: ['master']
+ pull_request:
6
+ workflow_dispatch:
7
jobs:
8
test:
9
name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }}
10
runs-on: ${{ matrix.os }}
11
strategy:
12
+ fail-fast: false
13
matrix:
14
version:
- - '1.4'
15
+ - '1'
16
- '1.6'
- - 'nightly'
17
os:
18
- ubuntu-latest
19
- macOS-latest
@@ -37,7 +38,7 @@ jobs:
37
38
- uses: actions/checkout@v2
39
- uses: julia-actions/setup-julia@v1
40
with:
- version: '1.6'
41
+ version: '1'
42
- run: |
43
julia --project=docs -e '
44
using Pkg
0 commit comments