File tree 7 files changed +66
-99
lines changed
7 files changed +66
-99
lines changed Original file line number Diff line number Diff line change
1
+ name : CI
2
+ on :
3
+ - push
4
+ - pull_request
5
+ jobs :
6
+ test :
7
+ name : Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }}
8
+ runs-on : ${{ matrix.os }}
9
+ continue-on-error : ${{ matrix.version == 'nightly' }}
10
+ strategy :
11
+ fail-fast : false
12
+ matrix :
13
+ version :
14
+ - ' 1.5'
15
+ - ' ^1.6.0-0'
16
+ - ' nightly'
17
+ os :
18
+ - ubuntu-latest
19
+ - macOS-latest
20
+ - windows-latest
21
+ arch :
22
+ - x64
23
+ - x86
24
+ exclude :
25
+ - os : macOS-latest
26
+ arch : x86
27
+ steps :
28
+ - uses : actions/checkout@v2
29
+ - uses : julia-actions/setup-julia@v1
30
+ with :
31
+ version : ${{ matrix.version }}
32
+ arch : ${{ matrix.arch }}
33
+ - uses : actions/cache@v1
34
+ env :
35
+ cache-name : cache-artifacts
36
+ with :
37
+ path : ~/.julia/artifacts
38
+ key : ${{ runner.os }}-test-${{ env.cache-name }}-${{ hashFiles('**/Project.toml') }}
39
+ restore-keys : |
40
+ ${{ runner.os }}-test-${{ env.cache-name }}-
41
+ ${{ runner.os }}-test-
42
+ ${{ runner.os }}-
43
+ - uses : julia-actions/julia-buildpkg@v1
44
+ - uses : julia-actions/julia-runtest@v1
45
+ - uses : julia-actions/julia-processcoverage@v1
46
+ - uses : codecov/codecov-action@v1
47
+ with :
48
+ file : lcov.info
Original file line number Diff line number Diff line change 1
1
name : CompatHelper
2
-
3
2
on :
4
3
schedule :
5
- - cron : ' 00 00 * * *'
6
-
4
+ - cron : 0 0 * * *
5
+ workflow_dispatch :
7
6
jobs :
8
7
CompatHelper :
9
8
runs-on : ubuntu-latest
13
12
- name : CompatHelper.main()
14
13
env :
15
14
GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
16
- COMPATHELPER_PRIV : ${{ secrets.COMPATHELPER_PRIV }}
17
15
run : julia -e 'using CompatHelper; CompatHelper.main()'
Original file line number Diff line number Diff line change 1
1
name : TagBot
2
2
on :
3
- schedule :
4
- - cron : 0 * * * *
3
+ issue_comment :
4
+ types :
5
+ - created
6
+ workflow_dispatch :
5
7
jobs :
6
8
TagBot :
9
+ if : github.event_name == 'workflow_dispatch' || github.actor == 'JuliaTagBot'
7
10
runs-on : ubuntu-latest
8
11
steps :
9
12
- uses : JuliaRegistries/TagBot@v1
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1
1
# IntervalConstraintProgramming.jl
2
2
3
- [ ![ Build Status] ( https://travis-ci.org /JuliaIntervals/IntervalConstraintProgramming.jl.svg?branch=master )] ( https://travis-ci.org/dpsanders /IntervalConstraintProgramming.jl )
3
+ [ ![ Build Status] ( https://github.com /JuliaIntervals/IntervalConstraintProgramming.jl/workflows/CI/badge .svg )] ( https://github.com/JuliaIntervals /IntervalConstraintProgramming.jl/actions/workflows/CI.yml )
4
4
[ ![ Docs] ( https://img.shields.io/badge/docs-stable-blue.svg )] ( https://juliaintervals.github.io/pages/packages/intervalconstraintprogramming/ )
5
5
6
6
This Julia package allows us to specify a set of constraints on real-valued variables,
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -162,19 +162,19 @@ end
162
162
163
163
164
164
165
- @testset " Constants" begin
166
- x = y = - ∞.. ∞
167
- X = IntervalBox (x, y)
165
+ # @testset "Constants" begin
166
+ # x = y = -∞..∞
167
+ # X = IntervalBox(x, y)
168
168
169
- a = 3
170
- S4 = @constraint x^ 2 + y^ 2 - $ a <= 0
171
- paving = pave (S4, X)
169
+ # a = 3
170
+ # S4 = @constraint x^2 + y^2 - $a <= 0
171
+ # paving = pave(S4, X)
172
172
173
- @test paving. ϵ == 0.01
174
- @test length (paving. inner) == 1532
175
- length (paving. boundary) == 1536
173
+ # @test paving.ϵ == 0.01
174
+ # @test length(paving.inner) == 1532
175
+ # length(paving.boundary) == 1536
176
176
177
- end
177
+ # end
178
178
179
179
@testset " Paving a 3D torus" begin
180
180
S5 = @constraint (3 - sqrt (x^ 2 + y^ 2 ))^ 2 + z^ 2 <= 1
You can’t perform that action at this time.
0 commit comments