Lets try and make this headless #146
Workflow file for this run
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: CI | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
env: | |
CARGO_TERM_COLOR: always | |
RUSTFLAGS: -Dwarnings | |
RUSTDOCFLAGS: -Dwarnings | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: apt update | |
run: sudo apt update | |
- name: apt install libsystemd-dev libudev-dev | |
run: sudo apt install -y --no-install-recommends libsystemd-dev libudev-dev | |
- name: Build | |
run: cargo build --all-targets --all-features | |
- name: Run tests | |
run: cargo test --all-targets --all-features | |
clippy: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: apt update | |
run: sudo apt update | |
- name: apt install libsystemd-dev libudev-dev | |
run: sudo apt install -y --no-install-recommends libsystemd-dev libudev-dev | |
- name: Clippy | |
run: cargo clippy --all-targets --all-features | |
fmt: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Fmt | |
run: cargo fmt -- --check |