Skip to content

Bump actions/checkout from 4 to 6 #13

Bump actions/checkout from 4 to 6

Bump actions/checkout from 4 to 6 #13

Workflow file for this run

name: Run tests
on:
push:
branches:
- master
- main
pull_request:
# needed to allow julia-actions/cache to delete old caches that it has created
permissions:
actions: write
contents: read
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
julia-version: ['lts', '1']
steps:
- uses: actions/checkout@v6
- uses: julia-actions/setup-julia@v2
with:
version: ${{ matrix.julia-version }}
- uses: julia-actions/cache@v2
- uses: julia-actions/julia-buildpkg@v1
- uses: julia-actions/julia-runtest@v1