Skip to content

Rearrange options for C1 to match those of C2 #88

Rearrange options for C1 to match those of C2

Rearrange options for C1 to match those of C2 #88

Workflow file for this run

#
# This file is based on one generated by PkgTemplates.jl
#
name: CI
on:
- push
- pull_request
jobs:
test:
name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }}
runs-on: ${{ matrix.os }}
timeout-minutes: 60
permissions: # needed to allow julia-actions/cache to proactively delete old caches that it has created
actions: write
contents: read
strategy:
fail-fast: false
matrix:
version:
- '1'
os:
- ubuntu-latest
arch:
- x64
steps:
- uses: actions/checkout@v4
- uses: julia-actions/setup-julia@v2
with:
version: ${{ matrix.version }}
arch: ${{ matrix.arch }}
- uses: ./.github/actions/juliatools
- uses: ./.github/actions/juliarun