Skip to content

Add new GH workflows and nightly builds/tests #1

Add new GH workflows and nightly builds/tests

Add new GH workflows and nightly builds/tests #1

Workflow file for this run

name: CI
on:
pull_request:
push:
branches: [main]
tags: ['*']
jobs:
test:
name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name}}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
version:
- "1.6"
- "1.7"
- "1.8"
- '1' # latest stable 1.x Julia release (Linux)
os:
- ubuntu-latest
arch:
- x64
include: # additional tests [Windows,Julia-nightly]
- os: [windows-latest,macOS-latest]
version: '1' # latest stable 1.x Julia release (Windows)
arch: x64
- os: ubuntu-latest
version: 'nightly'
arch: x64
allow_failure: true
steps:
- uses: actions/checkout@v3
- uses: julia-actions/setup-julia@v1
with:
version: ${{ matrix.version }}
arch: ${{ matrix.arch }}
- uses: julia-actions/cache@v1
- 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