Skip to content

Implement "Select devices" flow #17

Implement "Select devices" flow

Implement "Select devices" flow #17

Workflow file for this run

name: Build project
on:
push:
branches:
- main
pull_request:
jobs:
build:
env:
RUST_LOG: debug
name: Build
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v2
- name: Update apt cache
run: sudo apt update
- name: Install system dependencies
run: |
sudo apt install -y --no-install-recommends \
curl git build-essential meson \
libgtk-4-dev gettext libdbus-1-dev libssl-dev libudev-dev \
libxml2-utils desktop-file-utils
- name: Setup meson project
run: meson setup build
- name: Build
run: ninja -C build