Switch to new protobuf, send timestamp. #125
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 CI | |
on: | |
push: | |
branches: | |
- main | |
- Develop | |
pull_request: | |
branches: | |
- main | |
- Develop | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Setup Rust | |
uses: actions/checkout@v3 | |
with: | |
submodules: recursive | |
- name: Install Python | |
run: sudo apt-get install python3 | |
- name: Install cargo-audit | |
run: cargo install cargo-audit | |
- name: Build | |
run: cargo build --verbose | |
- name: Test | |
run: cargo test --verbose | |
- name: Clippy | |
run: cargo clippy --verbose -- -D warnings | |
- name: Audit | |
run: cargo audit |