parasail_aligner supports multiple same-score solutions for output #44
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: meson build | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: install meson and ninja | |
run: | | |
sudo apt update | |
sudo apt install meson ninja-build | |
- name: run meson | |
run: meson --buildtype plain . bld_meson | |
- name: run ninja | |
run: cd bld_meson && ninja |