mirror of
https://github.com/hyprwm/Hypr.git
synced 2024-11-22 13:35:57 +01:00
added a make action
This commit is contained in:
parent
184207793d
commit
d6d113c4e5
1 changed files with 21 additions and 0 deletions
21
.github/workflows/c-cpp.yml
vendored
Normal file
21
.github/workflows/c-cpp.yml
vendored
Normal file
|
@ -0,0 +1,21 @@
|
|||
name: C/C++ CI
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [ main ]
|
||||
pull_request:
|
||||
branches: [ main ]
|
||||
|
||||
jobs:
|
||||
build:
|
||||
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- name: getpkgs
|
||||
run: sudo apt install xcb cmake gcc libgtk-4-dev
|
||||
- name: configure
|
||||
run: make clear
|
||||
- name: make
|
||||
run: make release
|
Loading…
Reference in a new issue