Skip to content

Merge pull request #49 from nekStab/documentation #55

Merge pull request #49 from nekStab/documentation

Merge pull request #49 from nekStab/documentation #55

Workflow file for this run

name: GCC
on:
workflow_dispatch:
push:
branches:
- master
- main
pull_request:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
jobs:
main:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install Dependencies
run: sudo apt update && sudo apt install -y gfortran
- name: Install fpm
uses: fortran-lang/setup-fpm@v5
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
- name: Run Tests
run:
fpm test --verbose --flag "-Wall -Wextra -g -fbacktrace -fbounds-check"
fpm test --flag "-O3 -march=native -funroll-loops -ffast-math"