Merge pull request #25 from intelzhongjie/main #1
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 Code Scan | |
on: | |
push: | |
branches: | |
- main | |
paths: | |
- 'src/rust/cctrusted_vm/src/**.rs' | |
- 'src/rust/sample/src/**.rs' | |
- '.github/workflows/pr-check-rust.yaml' | |
pull_request: | |
paths: | |
- 'src/rust/cctrusted_vm/src/**.rs' | |
- 'src/rust/sample/src/**.rs' | |
- '.github/workflows/pr-check-rust.yaml' | |
workflow_dispatch: | |
jobs: | |
codescan: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout PR | |
uses: actions/checkout@v3 | |
- name: Set up Rust action | |
uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: 1.70.0 | |
- name: Install dependencies | |
run: | | |
sudo apt update && yes | DEBIAN_FRONTEND=noninteractive sudo apt install -y libcryptsetup-dev clang protobuf-compiler protobuf-c-compiler libprotobuf-c-dev libprotobuf-c1 build-essential pkg-config libssl-dev | |
- name: Run cargo check for VM SDK | |
run: | | |
cd src/rust/cctrusted_vm/ | |
cargo check | |
cargo fmt -- --check | |
cargo clippy | |
cargo install --locked cargo-deny | |
cargo deny check |