From 3818f3d8448ec2498fef139eb97213d68db6f9d2 Mon Sep 17 00:00:00 2001 From: Carlos Gomes Martinho Date: Mon, 18 May 2020 18:04:34 +0200 Subject: [PATCH] ci: run pipeline also on pull requests (#88) --- .github/workflows/main.yml | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 079a1a45..4cf85d9a 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -1,6 +1,12 @@ name: CMake -on: [push] +on: + push: + branches: + - master + pull_request: + branches: + - '*' env: # Customize the CMake build type here (Release, Debug, RelWithDebInfo, etc.) @@ -44,4 +50,4 @@ jobs: # shell: bash # # Execute tests defined by the CMake configuration. # # See https://cmake.org/cmake/help/latest/manual/ctest.1.html for more detail - # run: make tests && ./tests \ No newline at end of file + # run: make tests && ./tests