Skip to content

build(deps): Bump codecov/codecov-action from 5.5.3 to 6.0.0 #282

build(deps): Bump codecov/codecov-action from 5.5.3 to 6.0.0

build(deps): Bump codecov/codecov-action from 5.5.3 to 6.0.0 #282

Workflow file for this run

#SPDX-License-Identifier: MIT
#Copyright (c) "2023" . The DeepCausality Authors. All Rights Reserved.
name: Fmt
on: [ pull_request ]
env:
CARGO_TERM_COLOR: always
jobs:
fmt:
name: cargo fmt
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
components: rustfmt
- uses: actions-rs/cargo@v1
with:
command: fmt
args: --all -- --check