Skip to content

update runtests.jl

update runtests.jl #9

Workflow file for this run

name: Julia Unit Tests
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Set up Julia
uses: julia-actions/setup-julia@v1
with:
version: '1.11'
- name: Install dependencies
run: |
julia --project=. -e '
using Pkg;
Pkg.instantiate();
Pkg.precompile();
'
- name: Run tests
run: |
julia --project=. -e '
using Pkg;
Pkg.test(; test_args=["--project=."]);'