Skip to content

CompatHelper: bump compat for RecursiveArrayTools to 3, (keep existin… #323

CompatHelper: bump compat for RecursiveArrayTools to 3, (keep existin…

CompatHelper: bump compat for RecursiveArrayTools to 3, (keep existin… #323

Workflow file for this run

name: CI
on:
pull_request:
branches:
- main
tags: '*'
push:
paths-ignore:
- 'LICENSE.md'
- 'README.md'
jobs:
test:
name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ matrix.julia-threads }} thread(s) - ${{ github.event_name }}
runs-on: ${{ matrix.os }}
continue-on-error: ${{ matrix.version == 'nightly' }}
if: "!contains(github.event.head_commit.message, 'skip ci')"
env:
JULIA_NUM_THREADS: ${{ matrix.julia-threads }}
strategy:
fail-fast: false
matrix:
version: ['1.6', '1', '~1.10.0-0', 'nightly']
os: ['ubuntu-latest', 'macos-latest', 'windows-latest']
arch:
- x64
julia-threads:
- '1'
include:
- os: ubuntu-latest
version: '1'
arch: x64
julia-threads: '2'
steps:
- uses: actions/checkout@v2
- uses: julia-actions/setup-julia@v1
with:
version: ${{ matrix.version }}
arch: ${{ matrix.arch }}
- uses: actions/cache@v1
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@v1
with:
file: lcov.info
- uses: coverallsapp/github-action@master
with:
path-to-lcov: lcov.info
github-token: ${{ secrets.GITHUB_TOKEN }}
parallel: false