[WIP]Refactor rust build #31
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
on: | |
pull_request: | |
paths: | |
- rust/apps/near/** | |
name: NEAR Checks | |
jobs: | |
UnitTest: | |
name: Unit Test And Code coverage | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout sources | |
uses: actions/checkout@v2 | |
- uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: nightly-2024-01-31 | |
override: true | |
components: rustfmt | |
target: x86_64-apple-darwin | |
- name: Install cargo-llvm-cov | |
uses: taiki-e/install-action@cargo-llvm-cov | |
- name: Run rust/apps/near | |
run: cd rust/apps/near && cargo +nightly-2024-01-31 llvm-cov --fail-under-regions 49 --fail-under-functions 52 --fail-under-lines 68 |