Skip to content

fix(linter): Don't check for multiple bits at once. #3639

fix(linter): Don't check for multiple bits at once.

fix(linter): Don't check for multiple bits at once. #3639

Workflow file for this run

name: Benchmark
on:
workflow_dispatch:
pull_request:
types: [opened, synchronize]
paths:
- '**/*.rs'
- 'Cargo.lock'
push:
branches:
- main
paths:
- '**/*.rs'
- 'Cargo.lock'
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.sha }}
cancel-in-progress: true
jobs:
benchmark:
name: Benchmark
runs-on: ubuntu-latest
steps:
- name: Checkout Branch
uses: actions/checkout@v4
with:
submodules: true # Pull submodules for additional files
- name: Install Rust
uses: moonrepo/setup-rust@v1 # Cache everything to speed up compilation
with:
cache-base: main
- name: Install codspeed
uses: taiki-e/install-action@v2
with:
tool: cargo-codspeed
- name: Build Benchmark
run: cargo codspeed build --features codspeed -p oxc_benchmark
- name: Run benchmark
uses: CodSpeedHQ/action@v2
timeout-minutes: 30
with:
run: cargo codspeed run
token: ${{ secrets.CODSPEED_TOKEN }}