Skip to content

SPLIME

SPLIME #141

Workflow file for this run

# See https://github.com/Forsti5/Fortran-Unit-Test-Basic/blob/main/.github/workflows/main.yml
name: Build and test
on: [push, pull_request]
jobs:
GNU:
runs-on: ubuntu-22.04
name: Build and test
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Deps
run: |
sudo ./install_deps.sh
- name: Build
run: |
mkdir build && cd build && cmake .. && make -j2
- name: Test
run: |
cd build && ctest --output-on-failure