fix: Docker Container 上で動作しない問題の修正 (#131) #290
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: clippy | |
on: | |
push: | |
branches: | |
- main | |
- 'release/v*.*.*' | |
pull_request: | |
branches: | |
- main | |
- 'release/v*.*.*' | |
jobs: | |
clippy: | |
runs-on: ubuntu-latest | |
name: clippy ichiyoAI | |
steps: | |
- name: Checkout branch | |
uses: actions/checkout@v4 | |
- name: Setup toolchain | |
uses: dtolnay/rust-toolchain@stable | |
- name: Setup cache | |
uses: Swatinem/rust-cache@v2 | |
with: | |
prefix-key: "ichiyo-ai/gh-actions-cache" | |
- name: Run clippy | |
run: cargo clippy --all-targets --all-features |