Skip to content

build(deps): bump serde from 1.0.188 to 1.0.190 #245

build(deps): bump serde from 1.0.188 to 1.0.190

build(deps): bump serde from 1.0.188 to 1.0.190 #245

Workflow file for this run

name: test
on:
push:
branches: ["main"]
tags:
- "v*"
pull_request:
branches: ["main"]
env:
CARGO_TERM_COLOR: always
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Toolchain setup
uses: dtolnay/rust-toolchain@stable
with:
components: llvm-tools-preview
- name: cargo install cargo-llvm-cov
uses: taiki-e/install-action@cargo-llvm-cov
- name: cargo llvm-cov
run: cargo llvm-cov --locked --all-features --workspace --lcov --output-path lcov.info
- name: Upload to codecov.io
uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}
fail_ci_if_error: true
os-check:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os:
- macos-latest
- windows-latest
steps:
- uses: actions/checkout@v4
- name: Toolchain setup
uses: dtolnay/rust-toolchain@stable
- name: Test
run: cargo test --locked --all-features --all-targets
test-32-bit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: taiki-e/install-action@cross
- name: Test
run: cross test --workspace --release --target i686-unknown-linux-gnu