Skip to content

CI: Make use of julia-actions/cache #25

CI: Make use of julia-actions/cache

CI: Make use of julia-actions/cache #25

Workflow file for this run

name: CI
on:
push:
branches:
- master
- ci
pull_request:
branches:
- master
# Needed to allow julia-actions/cache to delete old caches
permissions:
actions: write
contents: read
jobs:
test:
name: Julia ${{ matrix.version }} - ${{ github.event_name }}
runs-on: ubuntu-22.04
strategy:
fail-fast: false
matrix:
version:
- '1.5'
- '1.6'
- '1.7'
- '1.8'
- '1.9'
- '1.10'
steps:
- uses: actions/checkout@v3
- uses: julia-actions/setup-julia@v1
with:
version: ${{ matrix.version }}
- uses: julia-actions/cache@v1
- uses: julia-actions/julia-buildpkg@v1
- uses: julia-actions/julia-runtest@v1