Merge pull request #143 from control-toolbox/patch-HSL #313
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# [.github/workflows/CI.yml] | |
name: CI | |
on: | |
push: | |
branches: | |
- main | |
tags: '*' | |
pull_request: | |
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 | |
- macOS-latest | |
# - windows-latest #fails with ssh-agent error on windows slave | |
arch: | |
- x64 | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: julia-actions/setup-julia@latest | |
with: | |
version: ${{ matrix.version }} | |
arch: ${{ matrix.arch }} | |
- uses: julia-actions/add-julia-registry@v2 | |
with: | |
key: ${{ secrets.SSH_KEY }} | |
registry: control-toolbox/ct-registry | |
- uses: julia-actions/julia-runtest@latest | |