matUtils updates: new subcommand "fix"; improvements to MAT::Tree:move_node and mask --move-nodes #1114
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: build | |
on: | |
pull_request: | |
push: | |
branches: | |
- master | |
env: | |
BUILD_TYPE: Release | |
jobs: | |
ubuntu-20-04: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@master | |
- name: install pre-reqs and build | |
run: sudo ./install/installUbuntu.sh | |
- name: test | |
run: | | |
./build/usher --help | |
./build/matUtils --help | |
mpirun -np 1 ./build/matOptimize --help | |
./build/ripples --help | |
command -v mafft | |
ubuntu-22-04: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@master | |
- name: install pre-reqs and build | |
run: sudo ./install/installUbuntu.sh | |
- name: test | |
run: | | |
./build/usher --help | |
./build/matUtils --help | |
mpirun -np 1 ./build/matOptimize --help | |
./build/ripples --help | |
command -v mafft | |
macOS-latest: | |
runs-on: macOS-latest | |
steps: | |
- uses: actions/checkout@master | |
- name: install pre-reqs and build | |
run: ./install/installMacOS.sh | |
- name: test | |
run: | | |
./build/usher --help | |
./build/usher-sampled --help | |
./build/matUtils --help | |
mpirun -np 1 ./build/matOptimize --help | |
./build/ripples --help | |
command -v mafft |