Skip to content

Bump serde from 1.0.198 to 1.0.199 #152

Bump serde from 1.0.198 to 1.0.199

Bump serde from 1.0.198 to 1.0.199 #152

Workflow file for this run

on:
pull_request:
push:
branches:
- "*"
name: Build & Test
env:
CARGO_TERM_COLOR: always
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Format
run: cargo fmt --all -- --check
- name: Lint
run: cargo clippy --all-targets --all-features -- -D warnings
build:
runs-on: ubuntu-latest
needs: [ lint ]
steps:
- uses: actions/checkout@v4
- name: Build
run: cargo build
- name: Test
run: cargo test --no-fail-fast
env:
RUST_LOG: debug