Added functions for formatting and parsing messages being sent and re… #64
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-test | |
on: [push, pull_request] | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install libudev requirement | |
run: sudo apt install libudev-dev | |
- name: Build dlwp library | |
run: cargo build -p dlwp | |
- name: Build darklight_driver | |
run: DLU_KEY=TEST cargo build -p darklight_driver --release | |
- name: Run dlwp tests | |
run: cargo test -p dlwp |