Skip to content

update for revision #174

update for revision

update for revision #174

Workflow file for this run

name: runtests
on:
push:
paths: ['Project.toml', '**.jl', '!docs/**', '.github/workflows/runtests.yml']
branches:
- main
- revision
pull_request:
paths: ['Project.toml', '**.jl', '!docs/**', '.github/workflows/runtests.yml']
# needed to allow julia-actions/cache to delete old caches that it has created
permissions:
actions: write
contents: read
jobs:
test:
runs-on: ${{ matrix.os }}
continue-on-error: ${{ matrix.version == 'nightly' }}
strategy:
matrix:
version:
- '1.6'
- '1.10'
os:
- ubuntu-latest
- macOS-latest
arch:
- x64
steps:
- uses: actions/checkout@v4
- uses: julia-actions/[email protected]
with:
version: ${{ matrix.version }}
arch: ${{ matrix.arch }}
- uses: julia-actions/cache@v1
- uses: julia-actions/julia-buildpkg@latest
- uses: julia-actions/julia-runtest@latest