Skip to content

Add comprehensive v1.0→v1.2 and v1.3+ roadmap #15

Add comprehensive v1.0→v1.2 and v1.3+ roadmap

Add comprehensive v1.0→v1.2 and v1.3+ roadmap #15

Workflow file for this run

# SPDX-License-Identifier: PMPL-1.0-or-later
name: CI
on:
push:
pull_request:
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
julia-version: ['1.9', '1.10', '1.11']
steps:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
- uses: julia-actions/setup-julia@824fb972babf1837cf21c49159bf8a8130f26840 # v2
with:
version: ${{ matrix.julia-version }}
- name: Install dependencies
run: julia --project=. -e 'using Pkg; Pkg.instantiate()'
- name: Run tests
run: julia --project=. -e 'using Pkg; Pkg.test()'