Skip to content

Commit 5dfe71e

Browse files
authored
Merge pull request #424 from JuliaData/an/ci
Fix CI
2 parents a7ccfd5 + e914704 commit 5dfe71e

File tree

3 files changed

+8
-6
lines changed

3 files changed

+8
-6
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,15 @@ jobs:
1212
fail-fast: false
1313
matrix:
1414
version:
15+
# FIXME! Switch from 1.6 to 'min' once we require a higher minimum
16+
# We can't switch yet as there is a method ambiguity for a depndency
17+
# in version 1.6.0.
1518
- '1.6'
19+
- 'lts'
1620
- '1' # automatically expands to the latest stable 1.x release of Julia
17-
- 'nightly'
21+
- 'pre'
1822
os:
1923
- ubuntu-latest
20-
- macOS-latest
21-
- windows-latest
2224
arch:
2325
- x64
2426
- x86

Project.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,12 +45,12 @@ Arrow = "69666777-d1a9-59fb-9406-91d4454c9d45"
4545
Dates = "ade2ca70-3891-5945-98fb-dc099432e06a"
4646
JSON = "682c06a0-de6a-54ab-a142-c8b1cf79cde6"
4747
JSON3 = "0f8b85d8-7281-11e9-16c2-39a750bddbf1"
48-
Plots = "91a5bcdd-55d7-5caf-9e0b-520d859cae80"
4948
PooledArrays = "2dfb63ee-cc39-5dd5-95bd-886bf059d720"
5049
RecipesBase = "3cdcf5f2-1ef4-517c-9805-6587b60abb01"
50+
RecipesPipeline = "01d81517-befc-4cb6-b9ec-a95719d0359c"
5151
SentinelArrays = "91c51154-3ec4-41a3-a24f-3f23e20d615c"
5252
StructTypes = "856f2bd8-1eba-4b0a-8007-ebc267875bd4"
5353
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
5454

5555
[targets]
56-
test = ["Arrow", "Dates", "JSON", "JSON3", "Plots", "PooledArrays", "RecipesBase", "SentinelArrays", "StructTypes", "Test"]
56+
test = ["Arrow", "Dates", "JSON", "JSON3", "PooledArrays", "RecipesBase", "RecipesPipeline", "SentinelArrays", "StructTypes", "Test"]

test/13_arraycommon.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ using PooledArrays
88
using JSON3
99
using StructTypes
1010
using RecipesBase
11-
using Plots
11+
using RecipesPipeline
1212
using SentinelArrays
1313
using Arrow
1414
using Missings

0 commit comments

Comments
 (0)