Fix error with CLI when specifying the gamma parameter value by reverting type of gamma parameter from Real to Float64 #197
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Run tests | |
on: [push, pull_request, workflow_dispatch] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: julia-actions/setup-julia@latest | |
with: | |
version: '1.7' | |
- name: Install dependencies | |
run: julia --project=. -e 'using Pkg; Pkg.add("TreeTools")' | |
- name: Build and Run TreeKnit CLI tests | |
run: bash test/command_line_tests.sh | |
- name: Run TreeKnit function tests | |
run: julia --project=. test/runtests.jl |