Skip to content

Fix block issuer key from bytes conversion (#2249) #923

Fix block issuer key from bytes conversion (#2249)

Fix block issuer key from bytes conversion (#2249) #923

Workflow file for this run

name: Test coverage
on:
push:
branches: [develop, staging, "2.0"]
paths:
- ".cargo/config.toml"
- ".github/workflows/coverage.yml"
- ".github/actions/**"
- "coverage.sh"
- "**.rs" # Include all rust files
- "**Cargo.toml" # Include all Cargo.toml files
- "**Cargo.lock" # Include all Cargo.lock files
- "!**/bindings/**" # Exclude all bindings
- "!cli/**" # Exclude CLI
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
collect-coverage:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install Protoc
uses: arduino/setup-protoc@v1
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
- name: Set up Rust
uses: ./.github/actions/setup-rust
with:
toolchain: nightly
components: llvm-tools-preview
- name: Install required packages (Ubuntu)
run: |
sudo apt-get update
sudo apt-get install libudev-dev libusb-1.0-0-dev
- name: Install llvm-cov
uses: taiki-e/install-action@cargo-llvm-cov
- name: Install nextest
uses: taiki-e/install-action@nextest
# - name: Start private tangle
# uses: "./.github/actions/private-tangle/setup"
- name: Start ledger nano
uses: "./.github/actions/ledger-nano"
# TODO add `--run-ignored all` again
- name: Collect coverage data
run: cargo ci-coverage
# - name: Tear down private tangle
# if: always()
# uses: "./.github/actions/private-tangle/tear-down"
- name: Upload coverage data to Coveralls
uses: coverallsapp/github-action@v2.2.1
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
flag-name: Unit