build(deps): bump tempfile from 3.13.0 to 3.14.0 #1289
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: [push, pull_request] | |
name: Basic CI | |
jobs: | |
check: | |
name: cargo check | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest, macOS-latest, windows-latest] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install `rust` toolchain | |
run: | | |
## Install `rust` toolchain | |
rustup toolchain install stable --no-self-update -c rustfmt --profile minimal | |
rustup default stable | |
# For bindgen: https://github.com/rust-lang/rust-bindgen/issues/1797 | |
- uses: KyleMayes/install-llvm-action@v2 | |
if: matrix.os == 'windows-latest' | |
with: | |
version: "11.0" | |
directory: ${{ runner.temp }}/llvm | |
- run: echo "LIBCLANG_PATH=$((gcm clang).source -replace "clang.exe")" >> $env:GITHUB_ENV | |
if: matrix.os == 'windows-latest' | |
- name: Check | |
run: | | |
cargo check --all --all-features | |
test: | |
name: cargo test | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest, macOS-latest, windows-latest] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install `rust` toolchain | |
run: | | |
## Install `rust` toolchain | |
rustup toolchain install stable --no-self-update -c rustfmt --profile minimal | |
rustup default stable | |
# For bindgen: https://github.com/rust-lang/rust-bindgen/issues/1797 | |
- uses: KyleMayes/install-llvm-action@v2 | |
if: matrix.os == 'windows-latest' | |
with: | |
version: "11.0" | |
directory: ${{ runner.temp }}/llvm | |
- run: echo "LIBCLANG_PATH=$((gcm clang).source -replace "clang.exe")" >> $env:GITHUB_ENV | |
if: matrix.os == 'windows-latest' | |
- name: Test | |
run: | | |
cargo test | |
fmt: | |
name: cargo fmt --all -- --check | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install `rust` toolchain | |
run: | | |
## Install `rust` toolchain | |
rustup toolchain install stable --no-self-update -c rustfmt --profile minimal | |
rustup default stable | |
- run: rustup component add rustfmt | |
- name: cargo fmt | |
run: | | |
cargo fmt --all -- --check | |
clippy: | |
name: cargo clippy -- -D warnings | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install `rust` toolchain | |
run: | | |
## Install `rust` toolchain | |
rustup toolchain install stable --no-self-update -c rustfmt --profile minimal | |
rustup default stable | |
- run: rustup component add clippy | |
- name: cargo clippy | |
run: | | |
cargo clippy --all-targets -- -D warnings | |
grcov: | |
name: Code coverage | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: | |
- ubuntu-latest | |
toolchain: | |
- nightly | |
cargo_flags: | |
- "--all-features" | |
steps: | |
- name: Checkout source code | |
uses: actions/checkout@v4 | |
- name: Install `rust` toolchain | |
run: | | |
## Install `rust` toolchain | |
rustup toolchain install nightly --no-self-update -c rustfmt --profile minimal | |
rustup default nightly | |
- name: "`grcov` ~ install" | |
run: cargo install grcov | |
- name: cargo test | |
run: | | |
cargo test --all --no-fail-fast ${{ matrix.cargo_flags }} | |
env: | |
CARGO_INCREMENTAL: "0" | |
RUSTFLAGS: "-Zprofile -Ccodegen-units=1 -Copt-level=0 -Clink-dead-code -Coverflow-checks=off -Zpanic_abort_tests -Cpanic=abort -Cdebug-assertions=off" | |
RUSTDOCFLAGS: "-Zprofile -Ccodegen-units=1 -Copt-level=0 -Clink-dead-code -Coverflow-checks=off -Zpanic_abort_tests -Cpanic=abort -Cdebug-assertions=off" | |
- name: Generate coverage data | |
id: grcov | |
run: | | |
grcov target/debug/ \ | |
--branch \ | |
--llvm \ | |
--source-dir . \ | |
--output-path lcov.info \ | |
--ignore-not-existing \ | |
--excl-line "#\\[derive\\(" \ | |
--excl-br-line "#\\[derive\\(" \ | |
--excl-start "#\\[cfg\\(test\\)\\]" \ | |
--excl-br-start "#\\[cfg\\(test\\)\\]" \ | |
--commit-sha ${{ github.sha }} \ | |
--service-job-id ${{ github.job }} \ | |
--service-name "GitHub Actions" \ | |
--service-number ${{ github.run_id }} | |
- name: Upload coverage as artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: lcov.info | |
# path: ${{ steps.grcov.outputs.report }} | |
path: lcov.info | |
- name: Upload coverage to codecov.io | |
uses: codecov/codecov-action@v4 | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} | |
# file: ${{ steps.grcov.outputs.report }} | |
file: lcov.info | |
fail_ci_if_error: true |