Skip to content

Commit 213a3d9

Browse files
committed
Merge branch 'gb/feasibility_sense' of https://github.com/jump-dev/Dualization.jl into gb/feasibility_sense
2 parents 9452844 + 889e537 commit 213a3d9

37 files changed

+955
-986
lines changed

.github/workflows/TagBot.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,3 +12,4 @@ jobs:
1212
- uses: JuliaRegistries/TagBot@v1
1313
with:
1414
token: ${{ secrets.GITHUB_TOKEN }}
15+
ssh: ${{ secrets.DOCUMENTER_KEY }}

.github/workflows/ci.yml

Lines changed: 8 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ on:
44
branches: [master]
55
pull_request:
66
types: [opened, synchronize, reopened]
7+
# needed to allow julia-actions/cache to delete old caches that it has created
8+
permissions:
9+
actions: write
10+
contents: read
711
jobs:
812
test:
913
name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }}
@@ -24,24 +28,15 @@ jobs:
2428
os: ubuntu-latest
2529
arch: x86
2630
steps:
27-
- uses: actions/checkout@v2
28-
- uses: julia-actions/setup-julia@v1
31+
- uses: actions/checkout@v4
32+
- uses: julia-actions/setup-julia@v2
2933
with:
3034
version: ${{ matrix.version }}
3135
arch: ${{ matrix.arch }}
32-
- uses: actions/cache@v1
33-
env:
34-
cache-name: cache-artifacts
35-
with:
36-
path: ~/.julia/artifacts
37-
key: ${{ runner.os }}-test-${{ env.cache-name }}-${{ hashFiles('**/Project.toml') }}
38-
restore-keys: |
39-
${{ runner.os }}-test-${{ env.cache-name }}-
40-
${{ runner.os }}-test-
41-
${{ runner.os }}-
36+
- uses: julia-actions/cache@v2
4237
- uses: julia-actions/julia-buildpkg@v1
4338
- uses: julia-actions/julia-runtest@v1
4439
- uses: julia-actions/julia-processcoverage@v1
45-
- uses: codecov/codecov-action@v1
40+
- uses: codecov/codecov-action@v4
4641
with:
4742
file: lcov.info

.github/workflows/documentation.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,14 @@ jobs:
99
build:
1010
runs-on: ubuntu-latest
1111
steps:
12-
- uses: actions/checkout@v2
12+
- uses: actions/checkout@v4
1313
- uses: julia-actions/setup-julia@latest
1414
with:
15-
# Build documentation on Julia 1.0
16-
version: '1.6'
15+
version: '1.10'
1716
- name: Install dependencies
1817
run: julia --project=docs/ -e 'using Pkg; Pkg.develop(PackageSpec(path=pwd())); Pkg.instantiate()'
1918
- name: Build and deploy
2019
env:
21-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # For authentication with GitHub Actions token
20+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
21+
DOCUMENTER_KEY: ${{ secrets.DOCUMENTER_KEY }}
2222
run: julia --project=docs/ docs/make.jl

.github/workflows/format_check.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
- uses: julia-actions/setup-julia@latest
1414
with:
1515
version: '1'
16-
- uses: actions/checkout@v1
16+
- uses: actions/checkout@v4
1717
- name: Format check
1818
shell: julia --color=yes {0}
1919
run: |

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "Dualization"
22
uuid = "191a621a-6537-11e9-281d-650236a99e60"
33
authors = ["guilhermebodin <guilherme.b.moraes@gmail.com>"]
4-
version = "0.5.8"
4+
version = "0.5.9"
55

66
[deps]
77
JuMP = "4076af6c-e467-56ae-b986-b466b2749572"

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Dualization.jl
22

3-
[![Build Status](https://github.com/jump-dev/Dualization.jl/workflows/CI/badge.svg?branch=master)](https://github.com/jump-dev/Dualization.jl/actions?query=workflow%3ACI)
3+
[![Build Status](https://github.com/jump-dev/Dualization.jl/actions/workflows/ci.yml/badge.svg?branch=master)](https://github.com/jump-dev/Dualization.jl/actions?query=workflow%3ACI)
44
[![codecov](https://codecov.io/gh/jump-dev/Dualization.jl/branch/master/graph/badge.svg)](https://codecov.io/gh/jump-dev/Dualization.jl)
55
[![DOI](https://zenodo.org/badge/182854997.svg)](https://zenodo.org/badge/latestdoi/182854997)
66

docs/src/reference.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,7 @@
44
Dualization.supported_constraints
55
Dualization.supported_objective
66
Dualization.DualNames
7+
Dualization.VariableData
8+
Dualization.ConstraintData
9+
Dualization.PrimalDualMap
710
```

0 commit comments

Comments
 (0)