diff options
author | Raphaël Zumer <rzumer@tebako.net> | 2019-12-12 15:23:57 -0500 |
---|---|---|
committer | Raphaël Zumer <rzumer@tebako.net> | 2019-12-12 15:34:44 -0500 |
commit | d2e75197634de2e2252fe49b70b3461b506bd15a (patch) | |
tree | 3eb823c6ee15e3e3bf5cbbebe79ad64832484d42 /.github/workflows | |
parent | 7027813cb268c8b168a2c6ac7e871761f02a4435 (diff) |
Enable GitHub CI on pull request
Also rename the build to be more specific.
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/build-ubuntu.yml (renamed from .github/workflows/ccppcmake.yml) | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/.github/workflows/ccppcmake.yml b/.github/workflows/build-ubuntu.yml index 7cf4339..fc5bd90 100644 --- a/.github/workflows/ccppcmake.yml +++ b/.github/workflows/build-ubuntu.yml @@ -1,6 +1,6 @@ -name: C/C++ CI with CMake +name: CMake Build (Ubuntu x86-64) -on: [push] +on: [push, pull_request] env: BUILD_TYPE: Release @@ -8,9 +8,9 @@ env: jobs: build: - + runs-on: ubuntu-latest - + steps: - uses: actions/checkout@v1 - name: Install dependencies |