Building and testing STRF #1
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: GitHub Actions | |
run-name: Building and testing STRF | |
on: [push] | |
jobs: | |
GitHub-Actions: | |
runs-on: ubuntu-latest | |
steps: | |
- run: sudo apt install --no-install-recommends make gcc pgplot5 gfortran libpng-dev libx11-dev libgsl-dev libfftw3-dev libcmocka-dev libcmocka0 | |
- name: Check out repository code | |
uses: actions/checkout@v3 | |
- run: cd ${{ github.workspace }} | |
- run: make | |
- run: make tests |