Skip to content

Test CI

Test CI #12

Workflow file for this run

name: CI
on:
pull_request:
branches:
- main
push:
branches:
- main
tags: '*'
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.arch }} - ${{ github.event_name }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
version:
- '1.10'
# - 'nightly' #TODO: enable once aarch64 nightlies are working
os:
- macos-14
- windows-latest
include:
- os: macos-14
arch: aarch64
- os: windows-latest
arch: x64
steps:
- uses: actions/checkout@v4.1.7
- uses: julia-actions/setup-julia@v2
with:
version: ${{ matrix.version }}
arch: ${{ matrix.arch }}
- uses: julia-actions/julia-buildpkg@v1
- name: "Run test"
uses: julia-actions/julia-runtest@v1