Skip to content

Window menu 적용 및 Settings window 생성 #37

Window menu 적용 및 Settings window 생성

Window menu 적용 및 Settings window 생성 #37

Workflow file for this run

name: Rust Lint
on:
push:
branches: [main]
paths:
- "apps/executeJS/src-tauri/**"
- "crates/**"
- "Cargo.toml"
- "Cargo.lock"
- "rustfmt.toml"
- ".github/workflows/rust-lint.yml"
pull_request:
branches: [main]
paths:
- "apps/executeJS/src-tauri/**"
- "crates/**"
- "Cargo.toml"
- "Cargo.lock"
- "rustfmt.toml"
jobs:
rust-lint:
name: Rust Lint Check
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Rust toolchain
uses: actions-rust-lang/setup-rust-toolchain@v1
with:
toolchain: stable
components: rustfmt
cache: true
matcher: true
- name: Check Rust formatting
run: |
echo "Checking Rust code formatting..."
cargo fmt --all -- --check