File tree Expand file tree Collapse file tree 7 files changed +66
-99
lines changed Expand file tree Collapse file tree 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 11name : CompatHelper
2-
32on :
43 schedule :
5- - cron : ' 00 00 * * *'
6-
4+ - cron : 0 0 * * *
5+ workflow_dispatch :
76jobs :
87 CompatHelper :
98 runs-on : ubuntu-latest
1312 - name : CompatHelper.main()
1413 env :
1514 GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
16- COMPATHELPER_PRIV : ${{ secrets.COMPATHELPER_PRIV }}
1715 run : julia -e 'using CompatHelper; CompatHelper.main()'
Original file line number Diff line number Diff line change 11name : TagBot
22on :
3- schedule :
4- - cron : 0 * * * *
3+ issue_comment :
4+ types :
5+ - created
6+ workflow_dispatch :
57jobs :
68 TagBot :
9+ if : github.event_name == 'workflow_dispatch' || github.actor == 'JuliaTagBot'
710 runs-on : ubuntu-latest
811 steps :
912 - uses : JuliaRegistries/TagBot@v1
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 11# IntervalConstraintProgramming.jl
22
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 )
44[ ![ Docs] ( https://img.shields.io/badge/docs-stable-blue.svg )] ( https://juliaintervals.github.io/pages/packages/intervalconstraintprogramming/ )
55
66This 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
162162
163163
164164
165- @testset " Constants" begin
166- x = y = - ∞.. ∞
167- X = IntervalBox (x, y)
165+ # @testset "Constants" begin
166+ # x = y = -∞..∞
167+ # X = IntervalBox(x, y)
168168
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)
172172
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
176176
177- end
177+ # end
178178
179179@testset " Paving a 3D torus" begin
180180 S5 = @constraint (3 - sqrt (x^ 2 + y^ 2 ))^ 2 + z^ 2 <= 1
You can’t perform that action at this time.
0 commit comments