Skip to content

feat : readme updated #30

feat : readme updated

feat : readme updated #30

Workflow file for this run

name: Rust Test & Coverage
on:
push:
jobs:
coverage:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- run: rustup show
- name: Install Rust toolchain
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
- name: Rust Cache
uses: Swatinem/rust-cache@v2
- name: Install cargo-llvm-cov & nextest
uses: taiki-e/install-action@cargo-llvm-cov
- name: Install nextest
uses: taiki-e/install-action@nextest
- name: Run llvm-cov tests
run: |
cd bee-vm/
cargo llvm-cov nextest --release --lcov --output-path lcov.info --test-threads=1