Skip to content

Commit b75a5d3

Browse files
authored
Avoid excessive testing (#152)
* Avoid excessive testing It is not worth the compute to test on so many combinations for a package without binary dependencies. Also, test macOS on AppleSilicon isntead of x86_64 * Require Julia 1.6 * Update ci.yml * Update ci.yml
1 parent a369309 commit b75a5d3

File tree

2 files changed

+13
-6
lines changed

2 files changed

+13
-6
lines changed

.github/workflows/ci.yml

Lines changed: 12 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,13 +19,20 @@ jobs:
1919
- 'pre'
2020
os:
2121
- ubuntu-latest
22-
- macOS-latest
23-
- windows-latest
2422
arch:
2523
- x64
26-
- x86
27-
exclude:
28-
- os: macOS-latest
24+
include:
25+
- version: 1
26+
os: macOS-latest
27+
arch: aarch64
28+
- version: 1
29+
os: windows-latest
30+
arch: x64
31+
- version: 1
32+
os: windows-latest
33+
arch: x86
34+
- version: 1
35+
os: ubuntu-latest
2936
arch: x86
3037
steps:
3138
- uses: actions/checkout@v2

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ DataFrames = "0.15, 0.16, 0.17, 0.18, 0.19, 0.20, 0.21, 0.22, 1"
1818
FileIO = "1"
1919
RData = "0.5, 0.6, 0.7, 0.8"
2020
Reexport = "0.2, 1.0"
21-
julia = "1"
21+
julia = "1.6"
2222

2323
[extras]
2424
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"

0 commit comments

Comments
 (0)