Skip to content

Drop support for Julia < 1.10, remove Requires, update GHA and other housekeeping #76

Drop support for Julia < 1.10, remove Requires, update GHA and other housekeeping

Drop support for Julia < 1.10, remove Requires, update GHA and other housekeeping #76

Workflow file for this run

name: CI
on:
pull_request:
push:
branches: [master]
tags: ['*']
jobs:
test:
name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
version:
- 'min'
- 'lts'
- '1' # automatically expands to the latest stable 1.x release of Julia
os:
- ubuntu-latest
arch:
- x86
- x64
include:
- os: ubuntu-latest
version: 'pre'
arch: x64
continue-on-error: true
steps:
- uses: actions/checkout@v5
- 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
env:
JULIA_NUM_THREADS: 4