diff --git a/.github/workflows/PerformanceBenchmark.yml b/.github/workflows/PerformanceBenchmark.yml new file mode 100644 index 0000000..c0fef5c --- /dev/null +++ b/.github/workflows/PerformanceBenchmark.yml @@ -0,0 +1,26 @@ +name: Performance Benchmark + +on: + push: + branches: + - main + +jobs: + benchmark: + runs-on: ubuntu-latest + + steps: + - name: Checkout code + uses: actions/checkout@v3 + + - name: Build Benchmark + run: | + mkdir build + cd build + cmake -DCMAKE_BUILD_TYPE=Release .. + cmake --build . + + - name: Run Benchmark + run: | + cd build + ./run_benchmark