mirror of
https://github.com/hyprwm/Hypr.git
synced 2025-12-30 15:50:06 +01:00
21 lines
369 B
YAML
21 lines
369 B
YAML
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-3-dev ninja-build libgdk-pixbuf2.0-0
|
|
- name: configure
|
|
run: make clear
|
|
- name: make
|
|
run: make release
|