Skip to content

Initial Commit after move #1

Initial Commit after move

Initial Commit after move #1

Workflow file for this run

name: unit_tests
on: [push]
env:
# keep the depot directly in the repository for the cache
JULIA_DEPOT_PATH: './.julia'
jobs:
test:
runs-on: self-hosted
steps:
- name: Checkout repository
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Setup Julia environment
uses: julia-actions/setup-julia@v2
with:
version: '1.10'
- name: Instantiate
run: |
julia --project=./ -e 'using Pkg; Pkg.instantiate()'
- name: Run tests
run: julia --project=./ -t 4 -e 'using Pkg; Pkg.test()' -O0