Skip to content

I do not know how to version control #16

I do not know how to version control

I do not know how to version control #16

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, macos-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