Skip to content

Merge pull request #7 from medyan-dev/Remove-stdlib-compat #25

Merge pull request #7 from medyan-dev/Remove-stdlib-compat

Merge pull request #7 from medyan-dev/Remove-stdlib-compat #25

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
version:
- 'lts'
- '1'
- 'nightly'
os:
- ubuntu-latest
- windows-latest
- macOS-13
arch:
- x64
include:
- os: macOS-14
version: '1.10'
arch: aarch64
- os: macOS-14
version: '1.11'
arch: aarch64
steps:
- uses: actions/checkout@v4
- uses: julia-actions/setup-julia@v2
with:
version: ${{ matrix.version }}
arch: ${{ matrix.arch }}
show-versioninfo: true
- uses: julia-actions/cache@v2
- uses: julia-actions/julia-buildpkg@v1
- uses: julia-actions/julia-runtest@v1
with:
coverage: false