Skip to content

Fix indentation in CI workflow for version exclusion #115

Fix indentation in CI workflow for version exclusion

Fix indentation in CI workflow for version exclusion #115

Workflow file for this run

name: CI
on:
- push
- pull_request
jobs:
test:
name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ github.event_name }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
version:
- '1.0' # LTS
- '1' # Latest Release
- 'nightly'
os:
- ubuntu-latest
- macOS-latest
- windows-latest
exclude:
- os: 'macOS-latest'
version: '1.0'
steps:
- uses: actions/checkout@v4
- uses: julia-actions/setup-julia@v2
with:
version: ${{ matrix.version }}
- uses: julia-actions/cache@v2
- uses: julia-actions/julia-buildpkg@v1
- uses: julia-actions/julia-runtest@v1
- uses: julia-actions/julia-processcoverage@v1
- uses: codecov/codecov-action@v5
with:
token: ${{ secrets.CODECOV_TOKEN }}