Skip to content

Merge pull request #26 from marianomarciello/direction #97

Merge pull request #26 from marianomarciello/direction

Merge pull request #26 from marianomarciello/direction #97

Workflow file for this run

name: CI
on:
push:
branches: [ main ]
pull_request:
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
run: sudo apt install -y --no-install-recommends libsystemd-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
run: sudo apt install -y --no-install-recommends libsystemd-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