Skip to content

Bumped version to v0.5.17 (#95) #299

Bumped version to v0.5.17 (#95)

Bumped version to v0.5.17 (#95) #299

Workflow file for this run

name: Tests
on:
push:
paths-ignore:
- "*.md"
env:
CARGO_TERM_COLOR: always
jobs:
clippy_check:
runs-on: ubuntu-latest
permissions:
checks: write
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/prepare_ubuntu
- run: rustup component add clippy
- uses: clechasseur/rs-clippy-check@v3
with:
args: --all-features
tests-ubuntu:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/prepare_ubuntu
- name: Install prerequisites
run: rustup component add llvm-tools-preview
- name: Install cargo-llvm-cov
uses: taiki-e/install-action@cargo-llvm-cov
- name: Generate code coverage
run: xvfb-run --auto-servernum cargo llvm-cov --no-cfg-coverage --workspace --lcov --output-path lcov.info
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: lcov.info
fail_ci_if_error: true