Minor: T relaxed contraint Debug. #1581
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
name: Rust | |
on: | |
push: | |
branches: [v2.x-dev] | |
pull_request: | |
branches: [v2.x-dev] | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v4 | |
- name: Test | |
uses: mirlahiji/rust-action@master | |
with: | |
args: cargo fmt --check && cargo test | |
# Removed as I as exceeding the allowed time on github. | |
# - name: Run cargo-tarpaulin | |
# uses: actions-rs/[email protected] | |
# with: | |
# version: '0.15.0' | |
# args: '--workspace --out Xml -- --test-threads 1' | |
# - name: Upload to codecov.io | |
# uses: codecov/codecov-action@v3 | |
# - name: Archive code coverage results | |
# uses: actions/upload-artifact@v1 | |
# with: | |
# name: code-coverage-report | |
# path: cobertura.xml |