parasail_aligner supports multiple same-score solutions for output #62
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: autotools make ubuntu | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: autoreconf | |
run: autoreconf -fi | |
- name: configure | |
run: ./configure || cat config.log | |
- name: make | |
run: make -j $(nproc) | |
- name: make check | |
run: make check -j $(nproc) | |
- name: make distcheck | |
run: make distcheck -j $(nproc) |