build(deps): bump the all group across 1 directory with 7 updates #815
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Check code formatting | |
on: | |
push: | |
branches: [ "main" ] | |
paths: | |
- "**/*.rs" | |
- "**/*.lua" | |
- ".github/workflows/fmt.yml" | |
- "**/Cargo.toml" | |
- "stylua.toml" | |
- ".rustfmt.toml" | |
pull_request: | |
branches: [ "main" ] | |
paths: | |
- "**/*.rs" | |
- "**/*.lua" | |
- ".github/workflows/fmt.yml" | |
- "**/Cargo.toml" | |
- "stylua.toml" | |
- ".rustfmt.toml" | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
check-code-formatting: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: "Install Rust" | |
uses: dtolnay/rust-toolchain@stable | |
with: | |
toolchain: nightly | |
components: rustfmt | |
- name: Rust formatting | |
run: cargo +nightly fmt --all -- --check | |
- name: "Install Rust" | |
uses: dtolnay/rust-toolchain@stable | |
with: | |
toolchain: stable | |
- name: Install stylua | |
uses: baptiste0928/cargo-install@v3 | |
with: | |
crate: stylua | |
features: lua54 | |
- name: Lua formatting | |
run: stylua --check --config-path stylua.toml . |