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