Skip to content
This repository has been archived by the owner on Dec 21, 2021. It is now read-only.

Add first version of integration with systemd #43

Merged
merged 18 commits into from
Feb 12, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,15 @@ jobs:
steps:
- uses: actions/checkout@v2
- run: rustup update stable && rustup default stable
- run: sudo apt-get install libdbus-1-dev pkg-config libdbus-1-3
- run: rustup component add rustfmt
- run: cargo fmt --all -- --check

clippy_check:
runs-on: ubuntu-latest
steps:
- name: Install dbus dependencies
run: sudo apt-get install libdbus-1-dev pkg-config libdbus-1-3
- uses: actions/checkout@v1
- uses: actions-rs/toolchain@v1
with:
Expand All @@ -36,6 +39,8 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install dbus dependencies
run: sudo apt-get install libdbus-1-dev pkg-config libdbus-1-3
- name: Build
run: cargo build --verbose
- name: Run tests
Expand Down
Loading