Run GitHub workflow for PRs, not pushes #14
Workflow file for this run
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
# IMPORTANT NOTE: The results of these benchmarks are not representative. This | ||
# 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 }} |