From 9fae9e8273f22d29b7f4ad0d75257f86165f6e51 Mon Sep 17 00:00:00 2001 From: NotAShelf Date: Thu, 30 Nov 2023 22:58:10 +0300 Subject: [PATCH] install dependencies for the CI --- .github/workflows/c-cpp.yml | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/.github/workflows/c-cpp.yml b/.github/workflows/c-cpp.yml index ae17f49..77fca7f 100644 --- a/.github/workflows/c-cpp.yml +++ b/.github/workflows/c-cpp.yml @@ -2,18 +2,20 @@ name: C++ Build CI on: push: - branches: [ "main" ] + branches: ["main"] pull_request: - branches: [ "main" ] + branches: ["main"] jobs: build: runs-on: ubuntu-latest steps: - - name: Checkout - uses: actions/checkout@v4 - - - name: Build with Make - run: make all + - name: Checkout + uses: actions/checkout@v4 + - name: Install Dependencies + run: sudo apt update && sudo apt install libboost-all-dev nlohmann-json3-dev + + - name: Build with Make + run: make all