Skip to content

Updated Visco-Benchmark: equal cost, better syntax #509

Updated Visco-Benchmark: equal cost, better syntax

Updated Visco-Benchmark: equal cost, better syntax #509

Workflow file for this run

name: Tests
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: ${{ startsWith(github.ref, 'refs/pull/') }}
permissions: # needed to allow julia-actions/cache to delete old caches that it has created
actions: write
contents: read
jobs:
test: # main CI tests
runs-on: ${{ matrix.os }}
timeout-minutes: 20
strategy:
fail-fast: false
matrix:
version: ['lts', '1', 'pre']
arch: [x64]
os: [ubuntu-latest]
steps:
- uses: actions/checkout@v7
- uses: julia-actions/setup-julia@v3
with:
version: ${{ matrix.version }}
arch: ${{ matrix.arch }}
- uses: julia-actions/cache@v3
- uses: julia-actions/julia-buildpkg@v1
- uses: julia-actions/julia-runtest@v1