Skip to content

Bump serde_json from 1.0.99 to 1.0.100 in /rust #29

Bump serde_json from 1.0.99 to 1.0.100 in /rust

Bump serde_json from 1.0.99 to 1.0.100 in /rust #29

Workflow file for this run

name: Rust
# Run either when pushing directly to main/master or in a PR targeting main/master
on:
push:
branches:
- master
- main
paths:
- "**.rs"
- "rust/Cargo.lock"
- "rust/Cargo.toml"
pull_request:
branches:
- master
- main
paths:
- "**.rs"
- "rust/Cargo.lock"
- "rust/Cargo.toml"
# https://github.com/actions-rs/cargo
jobs:
cargo:
runs-on: ubuntu-latest
steps:
- name: Check out source repository
uses: actions/checkout@v3
- name: Set up Rust toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: stable
- name: fmt
working-directory: rust
# workaround for color output
env:
TERM: xterm-256color
run: cargo fmt --check --verbose
- name: clippy
working-directory: rust
env:
TERM: xterm-256color
run: cargo clippy