Merge pull request #69 from Chekov2k/master #4
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 | |
- develop | |
pull_request: | |
branches: | |
- master | |
- develop | |
workflow_dispatch: | |
jobs: | |
build-on-linux: | |
name: compile on linux Ubuntu | |
continue-on-error: false | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Install dependency | |
run: | | |
sudo apt-get install libatlas-base-dev libfftw3-dev libplplot-dev libcfitsio-dev | |
- name: Build on Linux Ubuntu | |
run: | | |
./autogen.sh | |
./configure | |
make -j | |
make check | |