bioseq: update --remove-stop: replace with gaps (not remove) to keep … #46
This file contains hidden or 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: osx | |
| on: | |
| push: | |
| branches: | |
| - '*' | |
| tags-ignore: | |
| - '*' | |
| pull_request: | |
| jobs: | |
| perl: | |
| env: | |
| PREREQS: "Module::Build rlib Test::More Bio::Root::Version Bio::DB::GenBank Bio::Restriction::Analysis XML::DOM::XPath Test::Pod" | |
| runs-on: macos-latest | |
| strategy: | |
| matrix: | |
| os: [macOS] | |
| perl-version: | |
| - 'latest' | |
| - 'threaded' | |
| - '5.32' | |
| - '5.30' | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: perl -V | |
| run: perl -V | |
| - name: Install Dependencies | |
| # By running cpanm this way without testing rather than using ./Build, | |
| # we save *a lot* of time. | |
| run: brew install cpanm && cpanm --notest $PREREQS | |
| - name: Run Tests | |
| run: perl Build.PL && ./Build && ./Build test |