Skip to content

Commit 16aea10

Browse files
authored
Merge pull request #423 from JuliaIO/vs/ci-update
Refactor test workflow matrix configuration
2 parents 50b5fde + d31a750 commit 16aea10

2 files changed

Lines changed: 7 additions & 14 deletions

File tree

.github/workflows/test.yml

Lines changed: 6 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -21,28 +21,21 @@ jobs:
2121
matrix:
2222
version:
2323
- '1' # Current stable version
24-
- lts # Current LTS version
24+
- 'lts' # Current LTS version
2525
- '1.6' # Previous LTS version
2626
os:
27-
- macOS-13 # x64 runner
28-
- macOS-latest # aarch64 runner
27+
- macOS-15-intel
2928
- ubuntu-latest
3029
- windows-latest
3130
arch:
32-
- aarch64
3331
- x64
34-
exclude:
35-
- os: macOS-13
36-
arch: aarch64
37-
- os: macOS-latest
38-
arch: x64
32+
include:
3933
- os: macOS-latest
40-
version: '1.6'
41-
- os: ubuntu-latest
4234
arch: aarch64
43-
- os: windows-latest
35+
version: '1'
36+
- os: macOS-latest
4437
arch: aarch64
45-
include:
38+
version: 'lts'
4639
- os: ubuntu-latest
4740
arch: x86
4841
version: '1'

test/integration.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ using Test
1616
img2 = load(io2)
1717
@test img2 == img
1818

19-
uri = HTTP.URI("https://upload.wikimedia.org/wikipedia/commons/thumb/b/b3/Wikipedia-logo-v2-en.svg/135px-Wikipedia-logo-v2-en.svg.png")
19+
uri = HTTP.URI("https://raw.githubusercontent.com/JuliaImages/TestImages.jl/images/images/autumn_leaves.png")
2020
@test isa(load(uri), Matrix)
2121
end
2222
end

0 commit comments

Comments
 (0)