Skip to content

Test loading of package on unsupported platforms #4

Test loading of package on unsupported platforms

Test loading of package on unsupported platforms #4

Workflow file for this run

name: Loading
on:
pull_request:
branches:
- main
push:
branches:
- main
tags: '*'
# needed for julia-actions/cache to delete old caches
permissions:
actions: write
contents: read
jobs:
test:
name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
version:
- '1' # latest stable 1.x release
os:
- 'ubuntu-latest'
- 'macOS-13'
- 'windows-latest'
arch:
- x64
include:
- os: macOS-latest
version: '1'
arch: aarch64
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
- name: Run tests
uses: julia-actions/julia-runtest@v1