Skip to content

Excited states

Excited states #1463

Workflow file for this run

name: Allocations
on:
pull_request:
branches-ignore:
- 'doc/**'
jobs:
allocations:
runs-on: ubuntu-latest
strategy:
matrix:
julia-version: [1, 'nightly']
julia-arch: [x64]
fail-fast: false
steps:
- uses: actions/checkout@v4
- name: "Set up Julia"
uses: julia-actions/setup-julia@v2
with:
version: ${{ matrix.julia-version }}
arch: ${{ matrix.julia-arch }}
- uses: julia-actions/cache@v2
- name: "Run test"
run: |
julia --project=@. -e "using Pkg; Pkg.instantiate(); Pkg.build()"
julia -O3 --project=@. test/allocation_tests.jl