Separate lib
code from bin
in mining-device
#4133
Workflow file for this run
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
# Performs test coverage of project's libraries using cargo-tarpaulin and generates results using codecov.io. | |
# The following flags are set inside `tarpaulin.toml`: | |
# `features = "..."`: Includes the code with the listed features. The following features result in a | |
# tarpaulin error and are NOT included: derive, alloc, arbitrary-derive, attributes, and | |
# with_serde | |
# `run-types = [ "Lib" ]`: Only tests the package's library unit tests. Includes protocols, and utils (without the | |
# exclude-files flag, it includes this example because it contains a lib.rs file) | |
# `exclude-files = [ "examples/*" ]`: Excludes all projects in examples directory (specifically added to | |
# ignore examples that that contain a lib.rs file like interop-cpp) | |
# `timeout = "120s"`: If unresponsive for 120 seconds, action will fail | |
# `fail-under = 20`: If code coverage is less than 20%, action will fail | |
# `out = ["Xml"]`: Required for codecov.io to generate coverage result | |
# All message-generator test flags are in tests in test/message-generator/test | |
# This test loops through every test in test/message-generator/test, and runs each one, collecting | |
# code coverage data for anything in the roles/ directory that is relevant to SV2(pool, mining-proxy) | |
name: Test Coverage | |
on: | |
push: | |
branches: [ main, dev ] | |
pull_request: | |
branches: [ main, dev ] | |
jobs: | |
tarpaulin-test: | |
name: Tarpaulin Test | |
runs-on: ubuntu-latest | |
container: | |
image: xd009642/tarpaulin:0.27.1-nightly | |
options: --security-opt seccomp=unconfined | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Generate code coverage | |
run: | | |
./scripts/tarpaulin.sh | |
- name: Archive Tarpaulin code coverage results | |
uses: actions/upload-artifact@v4 | |
with: | |
name: tarpaulin-report | |
path: | | |
protocols/cobertura.xml | |
roles/cobertura.xml | |
utils/cobertura.xml |