feat: replace hatch with poetry #2
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 Code QA CI | |
on: push | |
jobs: | |
rust-ci: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: dtolnay/rust-toolchain@stable | |
- name: Build and run tests | |
run: | | |
pushd rust/remotivelabs-broker | |
cargo test | |
popd | |
- name: Check format | |
run: | | |
pushd rust/remotivelabs-broker | |
cargo fmt --check | |
popd |