Skip to content

Merge pull request #4 from MIERUNE/minor-interpolation-fix #26

Merge pull request #4 from MIERUNE/minor-interpolation-fix

Merge pull request #4 from MIERUNE/minor-interpolation-fix #26

Workflow file for this run

name: Test
on:
push:
branches:
- main
tags:
- "*"
pull_request:
env:
CARGO_TERM_COLOR: always
permissions:
contents: read
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Rustup
run: rustup toolchain install stable --profile minimal
- name: Rust Cache
uses: Swatinem/rust-cache@v2
- name: Install cargo-llvm-cov
uses: taiki-e/install-action@cargo-llvm-cov
- name: Test
run: cargo llvm-cov --workspace --exclude app --lcov --output-path lcov.info --all-features
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v3
# env:
# CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
with:
files: lcov.info
fail_ci_if_error: false