Skip to content

Commit 7c3fc7b

Browse files
fix up CI
1 parent 0ed09ac commit 7c3fc7b

File tree

2 files changed

+4
-12
lines changed

2 files changed

+4
-12
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,9 @@ on:
66
push:
77
branches:
88
- master
9-
tags: '*'
109
jobs:
1110
test:
12-
name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }}
13-
runs-on: ${{ matrix.os }}
14-
continue-on-error: ${{ matrix.group == 'Downstream' }}
11+
runs-on: ubuntu-latest
1512
strategy:
1613
fail-fast: false
1714
matrix:
@@ -25,13 +22,8 @@ jobs:
2522
- ArrayInterfaceStaticArrays
2623
- ArrayInterfaceTracker
2724
version:
25+
- '1'
2826
- '1.6'
29-
- '1' # automatically expands to the latest stable 1.x release of Julia.
30-
os:
31-
- ubuntu-latest
32-
- windows-latest
33-
arch:
34-
- x64
3527
steps:
3628
- uses: actions/checkout@v2
3729
- uses: julia-actions/setup-julia@v1
@@ -54,5 +46,4 @@ jobs:
5446
- uses: julia-actions/julia-processcoverage@v1
5547
- uses: codecov/codecov-action@v1
5648
with:
57-
file: lcov.info
58-
49+
file: lcov.info

test/runtests.jl

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ end
1818
if GROUP == "HighLevel"
1919
# Any tests for the level combined package? None right now.
2020
else
21+
dev_subpkg("ArrayInterfaceCore")
2122
dev_subpkg(GROUP)
2223
subpkg_path = joinpath(dirname(@__DIR__), "lib", GROUP)
2324
Pkg.test(PackageSpec(name=GROUP, path=subpkg_path))

0 commit comments

Comments
 (0)