Bump serde_with from 3.15.1 to 3.16.0 #232
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: Run tests | |
| on: | |
| workflow_dispatch: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| permissions: read-all | |
| jobs: | |
| tests: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 | |
| - name: Install protoc dependency | |
| uses: arduino/setup-protoc@c65c819552d16ad3c9b72d9dfd5ba5237b9c906b # v3.0.0 | |
| with: | |
| version: '24.x' | |
| - name: Build | |
| run: | | |
| cargo build --all-features --release | |
| - name: Format | |
| run: | | |
| cargo fmt --check | |
| - name: Run all tests | |
| run: | | |
| cargo test --all-features --release | |
| - name: Build test framework | |
| run: | | |
| cd examples | |
| cargo build --release | |
| - name: Test framework unit tests | |
| run: | | |
| cd examples | |
| cargo test |