Skip to content

Memory Management

Memory Management #118

Workflow file for this run

name: Unit Testing
on:
push:
branches:
- master
- dev
pull_request:
types: [opened, synchronize, reopened]
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
julia-version: [1, 1.10.4]
julia-arch: [x64]
os: [ubuntu-latest] # macOS-latest, windows-latest
steps:
- uses: actions/[email protected]
- uses: julia-actions/setup-julia@latest
with:
version: ${{ matrix.julia-version }}
- run: |
julia --project -e '
using Pkg;
Pkg.instantiate();
Pkg.build();
Pkg.add("Tracker");
'
- uses: julia-actions/julia-runtest@master