Skip to content

Trying to fix TagBot #304

Trying to fix TagBot

Trying to fix TagBot #304

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'
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'
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