Skip to content

Update thiserror requirement from 1.0.65 to 2.0.7 #142

Update thiserror requirement from 1.0.65 to 2.0.7

Update thiserror requirement from 1.0.65 to 2.0.7 #142

Workflow file for this run

name: Tests
on:
pull_request:
push:
branches:
- main
jobs:
tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
- name: Install cargo-llvm-cov
uses: taiki-e/install-action@cargo-llvm-cov
- name: Run tests with llvm-cov
env:
RUSTFLAGS: "-C target-cpu=native"
run: cargo llvm-cov --all-features --lcov --output-path lcov.txt
- name: Upload coverage to codecov
uses: codecov/codecov-action@v3
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
with:
files: ./lcov.txt # optional
fail_ci_if_error: true # optional (default = false)
verbose: true # optional (default = false)