mirror of
https://github.com/NotAShelf/Hyprdoctor.git
synced 2024-11-22 21:31:11 +00:00
22 lines
380 B
YAML
22 lines
380 B
YAML
name: C++ Build CI
|
|
|
|
on:
|
|
push:
|
|
branches: ["main"]
|
|
pull_request:
|
|
branches: ["main"]
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- 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
|