Skip to content

CI

CI #11

Workflow file for this run

name: CI
on:
push:
branches:
- main
tags: '*'
pull_request:
workflow_dispatch:
schedule:
- cron: '30 23 * * 0' # Runs every Sunday at 11:30 PM
jobs:
test:
name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
version:
- "1"
- "1.8" # minimum supported version
os:
- ubuntu-latest
# No expected compat issues for macOS or Windows. If issues arise, we can add the these tests back in.
# - macOS-latest
# - windows-latest
arch:
- x64
steps:
- uses: actions/checkout@v4
- uses: julia-actions/setup-julia@v2
with:
version: ${{ matrix.version }}
arch: ${{ matrix.arch }}
- uses: julia-actions/cache@v2
- uses: julia-actions/julia-buildpkg@v1
- uses: julia-actions/julia-runtest@v1
- uses: julia-actions/julia-processcoverage@v1
- uses: codecov/codecov-action@v3
with:
files: lcov.info
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}