Skip to content

Commit 977f726

Browse files
committed
Remove excessive CI and simplify setup accordingly
1 parent 3f4d4ae commit 977f726

File tree

1 file changed

+3
-13
lines changed

1 file changed

+3
-13
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -6,31 +6,21 @@ on:
66
pull_request:
77
jobs:
88
test:
9-
name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }}
10-
runs-on: ${{ matrix.os }}
9+
name: Julia ${{ matrix.version }} - ${{ github.event_name }}
10+
runs-on: ubuntu-latest
1111
strategy:
1212
fail-fast: false
1313
matrix:
1414
version:
1515
- '1.0'
1616
- '1'
1717
- 'nightly'
18-
os:
19-
- ubuntu-latest
20-
- macOS-latest
21-
- windows-latest
22-
arch:
23-
- x64
24-
- x86
25-
exclude:
26-
- os: macOS-latest
27-
arch: x86
2818
steps:
2919
- uses: actions/checkout@v3
3020
- uses: julia-actions/setup-julia@v1
3121
with:
3222
version: ${{ matrix.version }}
33-
arch: ${{ matrix.arch }}
23+
arch: x64
3424
- uses: julia-actions/cache@v1
3525
- uses: julia-actions/julia-buildpkg@v1
3626
- uses: julia-actions/julia-runtest@v1

0 commit comments

Comments
 (0)