Hyprdoctor/.github/workflows/c-cpp.yml

22 lines
380 B
YAML
Raw Normal View History

2023-11-30 22:54:49 +03:00
name: C++ Build CI
on:
push:
2023-11-30 22:58:10 +03:00
branches: ["main"]
2023-11-30 22:54:49 +03:00
pull_request:
2023-11-30 22:58:10 +03:00
branches: ["main"]
2023-11-30 22:54:49 +03:00
jobs:
build:
runs-on: ubuntu-latest
steps:
2023-11-30 22:58:10 +03:00
- name: Checkout
uses: actions/checkout@v4
2023-11-30 22:54:49 +03:00
2023-11-30 22:58:10 +03:00
- name: Install Dependencies
run: sudo apt update && sudo apt install libboost-all-dev nlohmann-json3-dev
- name: Build with Make
run: make all