Skip to content

Run GitHub workflow for PRs, not pushes #14

Run GitHub workflow for PRs, not pushes

Run GitHub workflow for PRs, not pushes #14

# IMPORTANT NOTE: The results of these benchmarks are not representative. This

Check failure on line 1 in .github/workflows/test-benchmark-script.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/test-benchmark-script.yml

Invalid workflow file

`pull-request` is not a valid event name
# is simply a smoke test to check everything compiles and runs.
on:
push:
pull-request:
jobs:
# Let us run this job on Ubuntu only as it is the only image that has gcc,
# gfortran, and clang available out of the box
multiple-compilers:
runs-on: ubuntu-24.04
steps:
- name: Check out repository
uses: actions/checkout@v4
- name: Run multiple compilers script
run: bash Benchmark/multiple-compilers.sh
working-directory: ${{ github.workspace }}