Skip to content

Implement MultiTeamRatingSystem Trait for TrueSkill #161

Implement MultiTeamRatingSystem Trait for TrueSkill

Implement MultiTeamRatingSystem Trait for TrueSkill #161

Workflow file for this run

name: Coverage
on: [pull_request, push]
jobs:
coverage:
runs-on: ubuntu-latest
env:
CARGO_TERM_COLOR: always
steps:
- uses: actions/checkout@v3
- name: Install Rust Nightly # Currently the --doctests flag is unstable and only available on the nightly toolchain
run: rustup update nightly
- name: Install cargo-llvm-cov
uses: taiki-e/install-action@cargo-llvm-cov
- name: Generate code coverage
run: cargo +nightly llvm-cov --doctests --workspace --lcov --output-path lcov.info
- name: Upload coverage to Codecov
run: |
curl -Os https://cli.codecov.io/latest/linux/codecov
chmod +x codecov
./codecov --verbose upload-process --fail-on-error -t ${{ secrets.CODECOV_TOKEN }} -n 'service'-${{ github.run_id }} -F service -f lcov.info