Update makefile.yml #9
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: phydev/SPiCCAto | |
on: | |
push: | |
branches: | |
- "**/*" | |
pull_request: | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: checkout | |
uses: actions/checkout@v3.5.0 | |
- name: Install requirements | |
run: | | |
sudo echo "deb http://archive.ubuntu.com/ubuntu trusty main restricted universe multiverse" >> /etc/apt/sources.list | |
sudo echo "deb http://security.ubuntu.com/ubuntu trusty-security main restricted universe multiverse" >> /etc/apt/sources.list | |
sudo apt-get update | |
sudo apt-get install gfortran-5 | |
- name: Make & install | |
run: | | |
make | |
"./run-SPiCCAto test -53453 0.2 0.0 0.8 2.0" | |
- name: Retrieve test results | |
run: bash <(curl -s https://codecov.io/bash) | |
if: "${{ success() }}" |