new lib_type option, mix, for bams with mix of ds and ss #227
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: tests | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install dependencies | |
run: sudo apt-get update;sudo apt-get install -y libbz2-dev liblzma-dev libcurl4-openssl-dev libgsl-dev samtools | |
- name: prepare htslib | |
run: git clone --branch=develop --recursive https://github.com/samtools/htslib.git;cd htslib; make;cd ..; | |
- name: make | |
run: export HTSSRC=`pwd`/htslib; make | |
- name: make test | |
run: make test |