Skip to content

[test] 동시 테스트 수행을 통한 테스트 속도 개선 #46

[test] 동시 테스트 수행을 통한 테스트 속도 개선

[test] 동시 테스트 수행을 통한 테스트 속도 개선 #46

Workflow file for this run

name: Lint
on:
workflow_dispatch:
pull_request:
branches: [ "main", "dev" ]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Rust
uses: dtolnay/rust-toolchain@nightly
with:
components: clippy, rustfmt
- name: Retrieve cache
uses: Leafwing-Studios/cargo-cache@v2
- name: Check rustfmt
run: cargo +nightly fmt
- name: Check clippy
run: cargo +nightly clippy -- -D warnings