some cleanup; CI retest julia 1.8 and windows slave #204
Workflow file for this run
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' | |
- '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@v1 | |
with: | |
key: ${{ secrets.SSH_KEY }} | |
registry: control-toolbox/ct-registry | |
- uses: julia-actions/julia-runtest@latest | |
- uses: julia-actions/julia-uploadcodecov@latest | |
env: | |
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} |