Skip to content

Bump braces from 3.0.2 to 3.0.3 in /website (#847) #807

Bump braces from 3.0.2 to 3.0.3 in /website (#847)

Bump braces from 3.0.2 to 3.0.3 in /website (#847) #807

Workflow file for this run

name: test-bench
on:
push:
branches: [master, stable-*]
pull_request:
branches: [master, stable-*]
jobs:
tests:
name: Benchmark ${{ matrix.compiler }}
runs-on: ubuntu-latest
env:
CC: ${{ matrix.compiler }}
strategy:
matrix:
compiler: [clang, gcc]
steps:
- uses: actions/checkout@v2.4.0
- name: Configure build
run: |
mkdir build
cd build
cmake -DCMAKE_BUILD_TYPE=Release -DENABLE_COUNTRY_BENCHMARKS=ON ..
- name: Build
run: |
cd build
make
- name: Run benchmarks
run: |
cd build
make benchmarks