added missing no-sequence option in -h for gfa #571
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: Validate | |
on: | |
push: | |
pull_request: | |
branches: [ main ] | |
jobs: | |
validate: | |
name: Validate | |
strategy: | |
matrix: | |
include: | |
- os: macos-latest | |
command: ".github/workflows/val.sh" | |
- os: ubuntu-latest | |
command: ".github/workflows/val.sh" | |
chmod: true | |
- os: windows-2019 | |
command: ".github/workflows/val.bat" | |
fail-fast: false | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
with: | |
submodules: true | |
- name: Build | |
run: make all -j | |
- name: Validate | |
run: | | |
chmod +x .github/workflows/val.sh | |
${{ matrix.command }} | |