Skip to content

added -c option to support Beta-M-U output (compatible with Bismark) … #3

added -c option to support Beta-M-U output (compatible with Bismark) …

added -c option to support Beta-M-U output (compatible with Bismark) … #3

Workflow file for this run

name: Check Build
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
build-ubuntu:
name: Check Ubuntu Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
submodules: true
- name: Install system dependencies
run: sudo apt install libcurl4-openssl-dev
- name: Check build
run: make
# These haven't been generated yet, so uncomment when ready
# - name: Run tests
# run: make check
build-mac:
name: Check macOS Build
runs-on: macos-latest
steps:
- uses: actions/checkout@v3
with:
submodules: true
- name: Check build
run: make
# These haven't been generated yet, so uncomment when ready
# - name: Run tests
# run: make check