Saving SAM read alignment with match chromosome/position, not the kme… #37
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: Main | |
on: | |
push: | |
branches: [ master, develop** ] | |
tags: | |
- '*' | |
pull_request: | |
branches: [ master, develop** ] | |
jobs: | |
release: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest, macos-latest] | |
include: | |
- os: ubuntu-latest | |
cmake_generator: "Unix Makefiles" | |
- os: macos-latest | |
cmake_generator: "Unix Makefiles" | |
defaults: | |
run: | |
shell: bash -l {0} | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup (Linux) | |
if: runner.os == 'Linux' | |
run: | | |
sudo apt-get update | |
sudo apt-get install libcurl4-openssl-dev | |
- name: Build | |
run: | | |
cmake -G "${{ matrix.cmake_generator }}" -S . -B build | |
cmake --build build | |
- name: Guidescan version | |
run: | | |
./build/bin/guidescan --version |