[WIP]Refactor rust build #37
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/ton/** | |
name: TON 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/ton | |
run: cd rust/apps/ton && cargo +nightly-2024-01-31 llvm-cov --fail-under-regions 41 --fail-under-functions 48 --fail-under-lines 47 |