Skip to content

Commit

Permalink
latest everywhere (#145)
Browse files Browse the repository at this point in the history
* latest everywhere

* checkout v4
  • Loading branch information
PierreMartinon authored Jul 4, 2024
1 parent 67653c5 commit b9e2b9e
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 9 deletions.
6 changes: 2 additions & 4 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,9 @@ jobs:
test:
name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }}
runs-on: ${{ matrix.os }}
# continue-on-error: true #warning: alaways display success in actions tab
strategy:
matrix:
version:
# - '1.9' significantly slower
- '1.10'
os:
- ubuntu-latest
Expand All @@ -23,12 +21,12 @@ jobs:
arch:
- x64
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: julia-actions/setup-julia@latest
with:
version: ${{ matrix.version }}
arch: ${{ matrix.arch }}
- uses: julia-actions/add-julia-registry@v2
- uses: julia-actions/add-julia-registry@latest
with:
key: ${{ secrets.SSH_KEY }}
registry: control-toolbox/ct-registry
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/Documentation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,15 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- uses: julia-actions/setup-julia@latest
- uses: julia-actions/add-julia-registry@v2
- uses: julia-actions/add-julia-registry@latest
with:
key: ${{ secrets.SSH_KEY }}
registry: control-toolbox/ct-registry
- uses: julia-actions/julia-buildpkg@v1
with:
version: '1.8'
- uses: julia-actions/julia-buildpkg@latest
#with:
# version: '1.8'
- name: Install dependencies
run: julia --project=docs/ -e 'using Pkg; Pkg.develop(PackageSpec(path=pwd())); Pkg.instantiate()'
- name: Build and deploy
Expand Down

0 comments on commit b9e2b9e

Please sign in to comment.