Epiread: added a constructor to make an epiread from a line from a st… #104
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: DNMTools distribution check on Ubuntu | |
on: | |
workflow_dispatch: | |
push: | |
branches: [ "master" ] | |
pull_request: | |
branches: [ "master" ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: recursive | |
- name: Update packages | |
run: sudo apt-get update | |
- name: Install dependencies | |
run: sudo apt-get install -y libhts-dev libgsl-dev samtools | |
- name: Generate configure script | |
run: ./autogen.sh | |
- name: configure | |
run: ./configure | |
- name: make distcheck | |
run: make distcheck |