Skip to content

chore(deps): bump serde_json from 1.0.139 to 1.0.140 #185

chore(deps): bump serde_json from 1.0.139 to 1.0.140

chore(deps): bump serde_json from 1.0.139 to 1.0.140 #185

Workflow file for this run

name: Test
on:
push:
branches: [ main ]
pull_request:
branches: '*'
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
continue-on-error: ${{ matrix.nightly }}
strategy:
fail-fast: false
matrix:
toolchain: [ 'stable', 'beta' ]
nightly: [false]
include:
- toolchain: 'nightly'
nightly: true
steps:
- uses: actions/checkout@v4
- name: Install toolchain
uses: dtolnay/rust-toolchain@stable
with:
toolchain: ${{ matrix.toolchain }}
components: clippy, rustfmt
- name: Setup Cache
uses: Swatinem/rust-cache@v2
- name: Run cargo fmt
run: cargo fmt --all -- --check
- name: Install nextest
uses: taiki-e/install-action@nextest
- name: Run tests
run: cargo nextest run --all-features --all-targets --verbose
- name: Run doc tests
run: cargo test --doc --verbose
- name: Run clippy
run: cargo clippy --all-targets --all-features -- --deny clippy::pedantic