Skip to content

ci: Adding dbus to deps #2

ci: Adding dbus to deps

ci: Adding dbus to deps #2

Workflow file for this run

name: Rust
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
container:
image: ghcr.io/gtk-rs/gtk4-rs/gtk4:latest
steps:
- uses: actions/checkout@v3
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
- name: Additional deps
run: sudo apt install libdbus-1-dev pkg-config
- name: Build
run: cargo build
- name: Test
run: cargo test