Skip to content

Commit

Permalink
fix ci workflow config (#31)
Browse files Browse the repository at this point in the history
  • Loading branch information
erikerlandson authored Mar 13, 2022
1 parent 5b00cc4 commit c5e184b
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
name: build

on:
push
pull_request:
branches: ['**']
push:
branches: ['**']
tags: [v*]

jobs:
build:
Expand All @@ -17,7 +21,7 @@ jobs:
sudo apt-get install -y gcc g++ cmake make libboost-all-dev
- name: build
run: |
cmake -D CMAKE_CXX_STANDARD=${{ matrix.cppstd }} .
cmake -DCMAKE_CXX_STANDARD=${{ matrix.cppstd }} -DBUILD_EXAMPLES=ON .
make
- name: unit-tests
run: |
Expand Down

0 comments on commit c5e184b

Please sign in to comment.