Skip to content

Add persistent_tasks test (#174) #19

Add persistent_tasks test (#174)

Add persistent_tasks test (#174) #19

Workflow file for this run

name: Run tests
on:
push:
branches:
- master
tags: '*'
pull_request:
workflow_dispatch:
jobs:
test:
runs-on: ${{ matrix.os }}
timeout-minutes: ${{ matrix.os == 'windows-latest' && 20 || 10 }}
strategy:
matrix:
os: ["ubuntu-latest"]
julia-version:
- '~1.10.0-0'
- '1.9'
- '1.8'
- '1.7'
- '1.6'
- '1.5'
- '1.4'
- 'nightly'
include:
- os: windows-latest
julia-version: '1'
- os: windows-latest
julia-version: '1.4'
- os: windows-latest
julia-version: 'nightly'
- os: macOS-latest
julia-version: '1'
- os: macOS-latest
julia-version: '1.4'
- os: macOS-latest
julia-version: 'nightly'
fail-fast: false
name: Test Julia ${{ matrix.julia-version }} ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Setup julia
uses: julia-actions/setup-julia@v1
with:
version: ${{ matrix.julia-version }}
- uses: julia-actions/julia-runtest@v1
- uses: julia-actions/julia-processcoverage@v1
- uses: codecov/codecov-action@v3
with:
file: ./lcov.info
flags: unittests
name: codecov-umbrella