-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(grpc-asyncio): add consistent tooling
Use the same test, lint and type checking across all our python projects. For API, that means adding pylint.
- Loading branch information
1 parent
d86cd5f
commit aef03ad
Showing
11 changed files
with
285 additions
and
183 deletions.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
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 |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.