Update README.md #221
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: build | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
# Install Dependencies | |
#from https://github.com/danielecook/seq-collection/blob/master/.github/workflows/build.yml | |
- name: Install dependencies (Linux) | |
#if: runner.os == 'ubuntu-latest' | |
run: | | |
sudo apt-get update | |
sudo apt-get -qy install make build-essential cmake libncurses-dev ncurses-dev libbz2-dev lzma-dev liblzma-dev \ | |
curl libssl-dev libtool autoconf automake libcurl4-openssl-dev | |
- name: build | |
run: /bin/bash -x ./build_megadepth.sh | |
- name: test | |
run: /bin/bash tests/test.sh |