Skip to content

chore(deps): update codecov/codecov-action action to v4.1.0 #32

chore(deps): update codecov/codecov-action action to v4.1.0

chore(deps): update codecov/codecov-action action to v4.1.0 #32

Workflow file for this run

name: Styling
on:
push:
branches: [main, develop]
tags:
- "*"
pull_request:
# The branches below must be a subset of the branches above
branches: ["*"]
jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Rust
uses: actions-rs/toolchain@v1
with:
toolchain: stable
- uses: Swatinem/rust-cache@v2.7.3
- name: Run fmt
run: cargo fmt -- --check
- name: Run clippy
run: cargo clippy -- --deny=warnings