update doc #329
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: Linux | |
on: | |
push: | |
branches: [ main, dev, ld ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: install dependency | |
run: | | |
sudo apt update | |
sudo apt-get update | |
sudo apt-get -y install libzstd-dev | |
- name: make | |
run: make -j4 | |
- name: download example data | |
run: make data | |
- name: test LD module | |
run: | | |
make ld_matrix | |
make ld_clump | |
make ld_tests |