From e7635d009e2d17589e10254bd5adc2b0002ce5c8 Mon Sep 17 00:00:00 2001 From: Anton Andreychuk Date: Wed, 31 Jan 2024 18:35:51 +0300 Subject: [PATCH] Create build.yml --- .github/workflows/build.yml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .github/workflows/build.yml diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 0000000..6efdfd5 --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,21 @@ +name: Build Status + +on: + push: + branches: [ "master", "AA-CCBS" ] + pull_request: + branches: [ "master", "AA-CCBS" ] + +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - name: Install Boost Library + run: sudo apt-get install libboost-all-dev + - name: Build Project + run: | + mkdir build + cd build + cmake .. + make