feat: Optional Storage health check #254
Workflow file for this run
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: Build | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| branches: | |
| - main | |
| jobs: | |
| build_and_test: | |
| name: Build | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout Repository | |
| id: checkout | |
| uses: actions/checkout@v5 | |
| - name: Setup Rust | |
| id: setup-rust | |
| run: rustup show | |
| - name: Install Protoc | |
| uses: arduino/setup-protoc@v3 | |
| - name: Build | |
| id: build | |
| run: cargo build --verbose | |
| - name: Test | |
| id: test | |
| run: cargo test --verbose | |
| - name: Check formatting | |
| id: check-formatting | |
| run: cargo fmt --check | |
| - name: Run linter | |
| id: lint | |
| run: cargo clippy |