Skip to content

Issue #25 - Add code documentation #74

Issue #25 - Add code documentation

Issue #25 - Add code documentation #74

Workflow file for this run

name: Main Tests
on: [push, pull_request]
jobs:
main:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/[email protected]
- name: Set up julia
uses: julia-actions/setup-julia@v1
with:
version: 1.11.1
- name: Install package
run: |
julia --project=@. -e 'using Pkg; Pkg.instantiate(); Pkg.precompile()'
- name: Run Unit Tests
run: |
julia --project=@. -e 'using Pkg; Pkg.test()'