docs: update README #55
This file contains hidden or 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: ML server Continuous integration | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| jobs: | |
| ml-ci: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout sources | |
| uses: actions/checkout@v4 | |
| with: | |
| submodules: "recursive" | |
| - name: Install stable toolchain | |
| uses: actions-rs/toolchain@v1 | |
| with: | |
| profile: minimal | |
| toolchain: stable | |
| override: true | |
| - name: Install protobuf compiler | |
| run: sudo apt-get update && sudo apt-get install -y protobuf-compiler | |
| - name: Build passing | |
| run: | | |
| cd ml | |
| cd server | |
| cargo check | |
| cd .. | |
| cd server-ext | |
| cargo check | |
| cd client-ext | |
| cargo check | |
| - name: Test Suite | |
| run: | | |
| cd ml | |
| cd server | |
| cargo test | |
| cd .. | |
| cd server-ext | |
| cargo test | |
| cd client-ext | |
| cargo test | |
| - name: Run cargo fmt | |
| run: | | |
| cd ml | |
| cd server | |
| cargo fmt --all -- --check | |
| cd .. | |
| cd server-ext | |
| cargo fmt --all -- --check | |
| cd client-ext | |
| cargo fmt --all -- --check | |
| - name: Run cargo clippy | |
| run: | | |
| cd ml | |
| cd server | |
| cargo clippy --all-targets | |
| cd .. | |
| cd server-ext | |
| cargo clippy --all-targets | |
| cd client-ext | |
| cargo clippy --all-targets |