From e6188a355a3b87f10a57893b51cc6effb504a580 Mon Sep 17 00:00:00 2001 From: Bartek Kryza Date: Tue, 16 Feb 2021 00:07:20 +0100 Subject: [PATCH] Updated workflow action deps --- .github/workflows/build.yml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index fe54bc87..3750fcca 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -1,14 +1,16 @@ name: build -on: [push] +on: [push, pull_request] jobs: build-ubuntu: - runs-on: ubuntu-latest + runs-on: ubuntu-20.04 steps: - uses: actions/checkout@v1 - - name: build and run + - name: Install deps + run: sudo apt-get install cmake libyaml-cpp-dev libspdlog-dev libclang-cpp11-dev + - name: Build and unit test run: | mkdir build cd build