File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree 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 }}
8+ runs-on : ${{ matrix.os }}
9+ strategy :
10+ matrix :
11+ version :
12+ - ' 1.0'
13+ - ' 1.4'
14+ - ' nightly'
15+ os :
16+ - ubuntu-latest
17+ - macOS-latest
18+ - windows-latest
19+ arch :
20+ - x64
21+ steps :
22+ - uses : actions/checkout@v2
23+ - uses : julia-actions/setup-julia@v1
24+ with :
25+ version : ${{ matrix.version }}
26+ arch : ${{ matrix.arch }}
27+ - uses : julia-actions/julia-buildpkg@latest
28+ - uses : julia-actions/julia-runtest@latest
29+ - uses : julia-actions/julia-uploadcodecov@latest
30+ env :
31+ CODECOV_TOKEN : ${{ secrets.CODECOV_TOKEN }}
32+ docs :
33+ name : Documentation
34+ runs-on : ubuntu-latest
35+ steps :
36+ - uses : actions/checkout@v2
37+ - uses : julia-actions/setup-julia@v1
38+ with :
39+ version : ' 1.0'
40+ - run : |
41+ julia --project=docs -e '
42+ using Pkg
43+ Pkg.develop(PackageSpec(path=pwd()))
44+ Pkg.instantiate()'
45+ - run : julia --project=docs docs/make.jl
46+ env :
47+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
48+ DOCUMENTER_KEY : ${{ secrets.DOCUMENTER_KEY }}
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 11# StructuredOptimization.jl
22
3- [ ![ Build Status] ( https://travis-ci.org/kul-forbes/StructuredOptimization.jl.svg?branch=master )] ( https://travis-ci.org/kul-forbes/StructuredOptimization.jl )
4- [ ![ Build status] ( https://ci.appveyor.com/api/projects/status/06wd5jckd8fhdi1v/branch/master?svg=true )] ( https://ci.appveyor.com/project/nantonel/structuredoptimization-jl/branch/master )
3+ [ ![ Build status] ( https://github.com/kul-forbes/StructuredOptimization.jl/workflows/CI/badge.svg )] ( https://github.com/kul-forbes/StructuredOptimization.jl/actions?query=workflow%3ACI )
54[ ![ codecov] ( https://codecov.io/gh/kul-forbes/StructuredOptimization.jl/branch/master/graph/badge.svg )] ( https://codecov.io/gh/kul-forbes/StructuredOptimization.jl )
65
76[ ![ ] ( https://img.shields.io/badge/docs-stable-blue.svg )] ( https://kul-forbes.github.io/StructuredOptimization.jl/stable )
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -5,3 +5,6 @@ Documenter = "e30172f5-a6a5-5a46-863b-614d45cd2de4"
55FFTW = " 7a1cc6ca-52ef-59f5-83cd-3a7055c09341"
66ProximalAlgorithms = " 140ffc9f-1907-541a-a177-7475e0a401e9"
77StructuredOptimization = " 46cd3e9d-64ff-517d-a929-236bc1a1fc9d"
8+
9+ [compat ]
10+ Documenter = " ~0.24"
You can’t perform that action at this time.
0 commit comments