Skip to content

Commit 881d6ac

Browse files
authored
CI and compat (#56)
1 parent 28938bb commit 881d6ac

File tree

3 files changed

+7
-8
lines changed

3 files changed

+7
-8
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ jobs:
5252
version:
5353
- "1.8"
5454
- "1" # automatically expands to the latest stable 1.x release of Julia
55-
- nightly
55+
- "pre"
5656
os:
5757
- ubuntu-latest
5858
arch:
@@ -71,7 +71,7 @@ jobs:
7171
version: 1
7272
steps:
7373
- uses: actions/checkout@v4
74-
- uses: julia-actions/setup-julia@v1
74+
- uses: julia-actions/setup-julia@v2
7575
with:
7676
version: ${{ matrix.version }}
7777
arch: ${{ matrix.arch }}

Project.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,14 @@
11
name = "ConstraintDomains"
22
uuid = "5800fd60-8556-4464-8d61-84ebf7a0bedb"
33
authors = ["Jean-François Baffier"]
4-
version = "0.3.11"
4+
version = "0.3.12"
55

66
[deps]
77
ConstraintCommons = "e37357d9-0691-492f-a822-e5ea6a920954"
88
Dictionaries = "85a47980-9c8c-11e8-2b9f-f7ca1fa99fb4"
99
Intervals = "d8418881-c3e1-53bb-8760-2df7ec849ed5"
1010
PatternFolds = "c18a7f1d-76ad-4ce4-950d-5419b888513b"
1111
StatsBase = "2913bbd2-ae8a-5f71-8c99-4fb6c76f3a91"
12-
TestItemRunner = "f8b46487-2199-4994-9208-9a1283c18c0a"
1312
TestItems = "1c621080-faea-4a02-84b6-bbd5e436b8fe"
1413

1514
[compat]
@@ -18,13 +17,14 @@ Dictionaries = "0.4"
1817
Intervals = "1"
1918
PatternFolds = "0.2"
2019
StatsBase = "0.34"
21-
TestItemRunner = "0.2"
22-
TestItems = "0.1"
20+
TestItemRunner = "0.2, 1"
21+
TestItems = "0.1, 1"
2322
julia = "1.8"
2423

2524
[extras]
2625
Aqua = "4c88cf16-eb10-579e-8560-4a9242c79595"
2726
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
27+
TestItemRunner = "f8b46487-2199-4994-9208-9a1283c18c0a"
2828

2929
[targets]
30-
test = ["Aqua", "Test"]
30+
test = ["Aqua", "Test", "TestItemRunner"]

src/ConstraintDomains.jl

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ using ConstraintCommons
55
using Dictionaries
66
using PatternFolds
77
using StatsBase
8-
using TestItemRunner
98
using TestItems
109

1110
# Exports

0 commit comments

Comments
 (0)