Skip to content

Test against newer Julia versions #295

Test against newer Julia versions

Test against newer Julia versions #295

Workflow file for this run

name: Tests
on:
pull_request:
push:
branches:
- main
tags: '*'
schedule:
- cron: "1 1 * * 1"
jobs:
test:
timeout-minutes: 45
name: ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ matrix.threads }} thread(s)
runs-on: ${{ matrix.os }}
env:
JULIA_NUM_THREADS: ${{ matrix.threads }}
strategy:
fail-fast: false
matrix:
version:
- '1.10'
- '1.9'
- '1.8'
- '1.7'
- '1.6'
# - '1'
os:
- ubuntu-latest
# - macOS-latest
# - windows-latest
threads:
- '1'
arch:
- x64
# - x86
exclude:
# 32-bit Julia binaries are not available on macOS
- os: macOS-latest
arch: x86
# 32-bit Linux binary for MKL isn't always available, let's ignore it
- os: ubuntu-latest
provider: 'MKL'

Check failure on line 45 in .github/workflows/runtests.yml

View workflow run for this annotation

GitHub Actions / Tests

Invalid workflow file

The workflow is not valid. .github/workflows/runtests.yml (Line: 45, Col: 13): Matrix exclude key 'provider' does not match any key within the matrix .github/workflows/runtests.yml (Line: 47, Col: 13): Matrix exclude key 'provider' does not match any key within the matrix
arch: x86
- provider: 'MKL'
threads: '2'
# include:
# - version: 'nightly'
# experimental: true
steps:
- uses: actions/checkout@v2
- uses: julia-actions/setup-julia@v1
with:
version: ${{ matrix.version }}
- uses: julia-actions/julia-buildpkg@v1
- uses: julia-actions/julia-runtest@v1
- uses: julia-actions/julia-processcoverage@v1
- uses: codecov/codecov-action@v1
with:
file: lcov.info