Skip to content

use Into<String> for with_sheet_name #6

use Into<String> for with_sheet_name

use Into<String> for with_sheet_name #6

Workflow file for this run

name: a1
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install Rust
run: |
rustup update
rustup component add rustfmt clippy
- name: Install cargo-llvm-cov
uses: taiki-e/install-action@cargo-llvm-cov
- name: Run Lint and Tests
run: |
cargo clippy -- -D warnings
cargo fmt --all -- --check
cargo llvm-cov --all-features --workspace --lcov --output-path lcov.info
- name: Upload Code Coverage Report
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: lcov.info
fail_ci_if_error: true