Skip to content

Add a GitHub Action to test the benchmarks #4

Add a GitHub Action to test the benchmarks

Add a GitHub Action to test the benchmarks #4

# IMPORTANT NOTE: The results of these benchmarks are not representative. This
# is simply a smoke test to check everything compiles and runs.
on:
push:
branches:
- main
pull_request:
jobs:
Compile-and-run:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-22.04, macos-14, windows-2022]
steps:
- name: Check out repository
uses: actions/checkout@v4
- name: Run build and benchmark script
run: python Benchmark/run-benchmarks.py -- -G"Unix Makefiles"
working-directory: ${{ github.workspace }}