require julia 1.10 (#36) #126
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
push: | |
branches: | |
- main | |
tags: ['*'] | |
pull_request: | |
concurrency: | |
# Skip intermediate builds: always. | |
# Cancel intermediate builds: only if it is a pull request build. | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: ${{ startsWith(github.ref, 'refs/pull/') }} | |
jobs: | |
test: | |
name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }} | |
runs-on: ${{ matrix.os }} | |
defaults: | |
run: | |
shell: bash | |
strategy: | |
fail-fast: false | |
matrix: | |
version: | |
- '1.10' | |
- '1.11' | |
- '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 }} | |
- uses: julia-actions/cache@v1 | |
- name: Develop packages | |
run: | | |
julia --project=test -e ' | |
using Pkg | |
Pkg.develop([PackageSpec(path=pwd())]) | |
Pkg.instantiate()' | |
- uses: julia-actions/julia-buildpkg@v1 | |
with: | |
project: test | |
- name: Print package status | |
run: | | |
julia --project=test -e ' | |
using InteractiveUtils | |
versioninfo() | |
using Pkg | |
Pkg.status(;mode=Pkg.PKGMODE_MANIFEST)' | |
- name: Run tests | |
run: | | |
cd test && | |
julia --project --color=yes --depwarn=yes --warn-overwrite=yes --warn-scope=yes --check-bounds=yes runtests.jl |