Skip to content

Update README.md

Update README.md #8

Workflow file for this run

name: CI
on:
push:
branches:
- 'main'
- 'patch/**'
- 'minor/**'
- 'major/**'
- 'feature/**'
- 'fix/**'
- 'hotfix/**'
- 'renovate/**'
pull_request:
branches:
- 'main'
- 'patch/**'
- 'minor/**'
- 'major/**'
- 'feature/**'
- 'fix/**'
- 'hotfix/**'
- 'renovate/**'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Build
run: cargo build --release --verbose
- name: rust-clippy-check
uses: actions-rs/[email protected]
with:
token: ${{ secrets.GITHUB_TOKEN }}
args: --all-targets --all-features -- -D warnings
- name: Run tests
run: cargo test --verbose
- name: Run cargo-tarpaulin
uses: actions-rs/[email protected]
with:
args: '-- --test-threads 1'
- name: Upload to codecov.io
uses: codecov/[email protected]
with:
token: ${{secrets.CODECOV_TOKEN}}
- name: Archive code coverage results
uses: actions/upload-artifact@v1
with:
name: code-coverage-report
path: cobertura.xml