Update CI to new branch name #3
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
build: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install dependencies | |
run: sudo apt-get install meson libglib2.0-dev libgudev-1.0-dev libjson-glib-dev libgtk-3-dev | |
- name: Meson | |
run: meson _build | |
- name: Build | |
run: meson compile -C _build |