Skip to content

feat: Fix the sync.rs doc example #1

feat: Fix the sync.rs doc example

feat: Fix the sync.rs doc example #1

Workflow file for this run

name: Build
on:
push:
pull_request:
branches: [ master ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install nix
uses: cachix/install-nix-action@v27
with:
github_access_token: ${{ secrets.GITHUB_TOKEN }}
- run: nix flake check
- run: nix --extra-experimental-features "nix-command flakes" build .#mnn-llvm-cov
- name: Upload coverage reports to Codecov
uses: codecov/[email protected]
with:
flags: unittests
name: codecov-mnn
fail_ci_if_error: true
token: ${{ secrets.CODECOV_TOKEN }}
files: ./result
verbose: true