Skip to content

add Telemetry json test data compatible with tlmcmddb v2.5 #276

add Telemetry json test data compatible with tlmcmddb v2.5

add Telemetry json test data compatible with tlmcmddb v2.5 #276

Workflow file for this run

name: Rust
on:
push:
branches: [ main ]
pull_request:
permissions:
id-token: write
contents: read
checks: write
pull-requests: write
env:
CARGO_INCREMENTAL: 0
# renovate: datasource=github-releases depName=EmbarkStudios/cargo-about
CARGO_ABOUT_VERSION: 0.6.4
jobs:
rust:
runs-on: ubuntu-24.04
steps:
- uses: actions/[email protected]
with:
submodules: recursive
- name: Get Rust toolchain
id: toolchain
run: |
awk -F'[ ="]+' '$1 == "channel" { print "toolchain=" $2 }' rust-toolchain >> "$GITHUB_OUTPUT"
- uses: dtolnay/rust-toolchain@v1
with:
toolchain: ${{ steps.toolchain.outputs.toolchain }}
components: clippy, rustfmt
- name: cache dependencies
uses: Swatinem/[email protected]
- name: install cargo-about
run: |
cargo install cargo-about --locked --version ${{ env.CARGO_ABOUT_VERSION }}
- name: reviewdog / clippy
if: github.event_name == 'pull_request'
uses: sksat/[email protected]
with:
reporter: github-pr-review
- name: reviewdog / clippy
if: github.event_name == 'push'
uses: sksat/[email protected]
with:
reporter: github-check
- name: format
run: |
cargo fmt --all -- --check
- name: unit test
run: |
cargo test