chimei-ruiju.orgへの対応: domain
とservice
にchimei-ruiju用の構造体を定義
#75
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: Code quality check | |
on: | |
pull_request: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: Swatinem/rust-cache@v2 | |
with: | |
cache-all-crates: true | |
shared-key: 'code-quality' | |
cache-provider: 'github' | |
- name: Setup clippy | |
run: rustup component add clippy | |
- name: Code review with clippy | |
uses: giraffate/clippy-action@v1 | |
with: | |
reporter: 'github-pr-review' | |
filter_mode: 'nofilter' | |
github_token: ${{ secrets.GITHUB_TOKEN }} |