chimei-ruiju.orgへの対応: experimental
モジュールのParser
でChimeiRuijuを使ってパースできるようにした
#127
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: | |
paths: | |
- '**.rs' | |
- '**/Cargo.toml' | |
- '!*.md' | |
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 }} | |
- name: Run benchmark | |
uses: boa-dev/criterion-compare-action@v3 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
branchName: ${{ github.base_ref }} | |
cwd: 'core' | |
benchName: 'core_benchmark' |