Use rust #5
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: Rust check | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
env: | |
CARGO_TERM_COLOR: always | |
RUSTFLAGS: -Dwarnings | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install dependencies | |
run: sudo apt-get install -y libssl-dev pkg-config clang build-essential libusb-1.0-0 libusb-1.0-0-dev | |
- name: Check fmt | |
run: make fmt | |
- name: Lint | |
run: make lint | |
- name: Tests usual | |
run: make test | |
- name: Build usual | |
run: make build | |
- uses: actions/upload-artifact@v3 | |
with: | |
name: packages-x86_64 | |
path: target/release/debian/*.deb |