matUtils extract --reroot: retain rerooted leaf, rename leaf from former internal node #1128
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-13: | |
runs-on: macos-13 | |
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 |