readme with C++17 #408
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-22.04 | |
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 hwe | |
make ld_matrix | |
make ld_r2 | |
make ld_clump | |
make ld_tests |