Skip to content

Don't test with Julia 1.1 on macOS ARM (not available) #40

Don't test with Julia 1.1 on macOS ARM (not available)

Don't test with Julia 1.1 on macOS ARM (not available) #40

Workflow file for this run

name: Tests
on:
pull_request:
branches: [main]
paths: [ 'src/**', 'test/**', '.github/workflows/Tests.yml' ]
push:
branches: [main]
paths: [ 'src/**', 'test/**', '.github/workflows/Tests.yml' ]
tags: '*'
jobs:
test:
name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ github.event_name }}
if: ${{ ! (matrix.os == 'macos-latest' && matrix.version == '1.1') }}

Check failure on line 13 in .github/workflows/Tests.yml

View workflow run for this annotation

GitHub Actions / Tests

Invalid workflow file

The workflow is not valid. .github/workflows/Tests.yml (Line: 13, Col: 9): Unrecognized named-value: 'matrix'. Located at position 4 within expression: ! (matrix.os == 'macos-latest' && matrix.version == '1.1')
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
version: ['1.1', 'nightly']
os: [ubuntu-latest, windows-latest, macos-latest]
steps:
- uses: actions/checkout@v4
- uses: julia-actions/setup-julia@v1
with:
version: ${{ matrix.version }}
- uses: julia-actions/cache@v1
- uses: julia-actions/julia-buildpkg@v1
- uses: julia-actions/julia-runtest@v1