mirror of
https://github.com/hyprwm/Hypr.git
synced 2024-11-02 06:45:58 +01:00
21 lines
367 B
YAML
21 lines
367 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 libgtkmm-3.0-dev
|
|
- name: configure
|
|
run: make clear
|
|
- name: make
|
|
run: make release
|