Skip to content

Update klib link in README dependencies #25

Update klib link in README dependencies

Update klib link in README dependencies #25

Workflow file for this run

name: C/C++ CI
on:
push:
branches: [ "unicorn" ]
pull_request:
branches: [ "unicorn" ]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
steps:
- uses: actions/checkout@v4
- name: Install htslib
run: |
if [[ "$RUNNER_OS" == "Linux" ]]; then
sudo apt-get update && sudo apt-get install -y libhts-dev
elif [[ "$RUNNER_OS" == "macOS" ]]; then
brew install htslib
fi
- name: Update submodules
run: git submodule update --init --recursive
- name: make
run: make
- name: test
run: make test