Skip to content

add debug option and update tests #121

add debug option and update tests

add debug option and update tests #121

Workflow file for this run

name: Linux
on:
push:
branches: [ main, dev ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
submodules: recursive
- name: install dependency
run: |
sudo apt update
sudo apt-get update
sudo apt-get -qy install build-essential zlib1g zlib1g-dev curl libcurl4-openssl-dev lzma-dev liblzma-dev libeigen3-dev
- name: install htslib
run: |
git clone --recursive https://github.com/samtools/htslib.git
cd htslib && autoreconf -i && ./configure --enable-libcurl
sudo make -j 4 install
sudo ldconfig
cd -
- name: build
run: |
make -j4
- name: test
run: |
cd tests
make -j4
make test