Skip to content

Update Rust crate serde to 1.0.189 #2

Update Rust crate serde to 1.0.189

Update Rust crate serde to 1.0.189 #2

Workflow file for this run

name: Check rust code formatting
on:
push:
pull_request:
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Set cargo fmt output
run: export FMT_OUTPUT=$(cargo fmt --message-format short)
- name: Print cargo fmt output
run: echo $FMT_OUTPUT
- name: Check cargo fmt output
run: if [ -z $FMT_OUTPUT ]; then exit 1; fi