IT WORKS XD #59
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: Build | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install Udev | |
run: | | |
sudo apt install -y libudev-dev | |
- name: Build | |
run: | | |
cargo build | |
- name: Test | |
run: | | |
cargo test | |
- name: Format Check | |
run: | | |
cargo fmt | |
git diff --quiet HEAD | |