Skip to content

implement trait,const struct,metadata,muti_trait_struct.... (#22) #59

implement trait,const struct,metadata,muti_trait_struct.... (#22)

implement trait,const struct,metadata,muti_trait_struct.... (#22) #59

Workflow file for this run

name: Rust CI
on:
push:
branches:
- main
- mir-analyze
pull_request:
branches:
- main
jobs:
check-formatting:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Check formatting
run: |
cargo fmt --manifest-path collector/Cargo.toml -- --check
continue-on-error: false
build-and-test:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Build and test
run: |
cargo build --verbose --manifest-path ./collector/Cargo.toml
cargo test --verbose --manifest-path ./collector/Cargo.toml