Skip to content

Commit ef7e964

Browse files
committed
Bump minimum Julia version to Julia v1.10
1 parent 9b05d55 commit ef7e964

3 files changed

Lines changed: 11 additions & 9 deletions

File tree

.github/workflows/ci.yml

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,19 +4,21 @@ 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 }}
1014
runs-on: ${{ matrix.os }}
1115
strategy:
1216
fail-fast: false
1317
matrix:
14-
version: ['1.6', '1']
18+
version: ['1.10', '1']
1519
os: [ubuntu-latest]
1620
arch: [x64]
1721
steps:
18-
- name: Install xmllint
19-
run: sudo apt-get install -y curl
2022
- uses: actions/checkout@v6
2123
- uses: julia-actions/setup-julia@v2
2224
with:
@@ -30,7 +32,7 @@ jobs:
3032
with:
3133
depwarn: error
3234
- uses: julia-actions/julia-processcoverage@v1
33-
- uses: codecov/codecov-action@v4
35+
- uses: codecov/codecov-action@v6
3436
with:
35-
file: lcov.info
37+
files: lcov.info
3638
token: ${{ secrets.CODECOV_TOKEN }}

.github/workflows/format_check.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,12 @@ jobs:
1313
- uses: julia-actions/setup-julia@latest
1414
with:
1515
version: '1'
16-
- uses: actions/checkout@v4
16+
- uses: actions/checkout@v6
1717
- name: Format check
1818
shell: julia --color=yes {0}
1919
run: |
2020
using Pkg
21-
Pkg.add(PackageSpec(name="JuliaFormatter", version="1"))
21+
Pkg.add(PackageSpec(name="JuliaFormatter", version="2"))
2222
using JuliaFormatter
2323
format(".", verbose=true)
2424
out = String(read(Cmd(`git diff`)))

Project.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ Mosek = "6405355b-0ac2-5fba-af84-adbd65488c0e"
1010
[compat]
1111
MathOptInterface = "1.20"
1212
Mosek = "10, 11"
13-
Test = "1.6"
14-
julia = "1.6"
13+
Test = "1"
14+
julia = "1.10"
1515

1616
[extras]
1717
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"

0 commit comments

Comments
 (0)