Skip to content

Bump BENCHMARKTOOLS_VERSION on older Julia versions #368

Bump BENCHMARKTOOLS_VERSION on older Julia versions

Bump BENCHMARKTOOLS_VERSION on older Julia versions #368

Workflow file for this run

name: CI
on:
pull_request:
branches:
- master
push:
branches:
- master
tags: '*'
jobs:
test:
name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }}
runs-on: ${{ matrix.os }}
continue-on-error: ${{ matrix.julia-version == 'nightly' }}
strategy:
fail-fast: false
matrix:
version:
- '1.0'
- '1.6'
- '1'
- 'nightly'
arch:
- x64
os:
- ubuntu-latest
include:
- version: '1.5'
arch: x64
os: ubuntu-20.04
- version: '1.7'
arch: x64
os: ubuntu-20.04
- version: '1.8'
arch: x64
os: ubuntu-22.04
- version: '1.9'
arch: x64
os: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- uses: julia-actions/setup-julia@v1
with:
version: ${{ matrix.version }}
arch: ${{ matrix.arch }}
- uses: actions/cache@v4
env:
cache-name: cache-artifacts
with:
path: ~/.julia/artifacts
key: ${{ runner.os }}-test-${{ env.cache-name }}-${{ hashFiles('**/Project.toml') }}
restore-keys: |
${{ runner.os }}-test-${{ env.cache-name }}-
${{ runner.os }}-test-
${{ runner.os }}-
- uses: julia-actions/julia-buildpkg@v1
- uses: julia-actions/julia-runtest@v1
- uses: julia-actions/julia-processcoverage@v1
- uses: codecov/codecov-action@v3
with:
file: lcov.info