mirror of
https://github.com/NotAShelf/Hyprdoctor.git
synced 2024-11-22 21:31:11 +00:00
20 lines
260 B
YAML
20 lines
260 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: Build with Make
|
|
run: make all
|
|
|