Fix typo in documentation: use lineno instead of line_no (#350)
#725
This file contains hidden or 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: Benchmark | |
| on: | |
| - push | |
| - pull_request | |
| jobs: | |
| benchmark: | |
| name: "Benchmark: ${{ matrix.runs-on }}" | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| runs-on: | |
| - macos-latest | |
| - ubuntu-latest | |
| - windows-latest | |
| runs-on: ${{ matrix.runs-on }} | |
| timeout-minutes: 15 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: ruby/setup-ruby@v1 | |
| with: | |
| ruby-version: ruby | |
| - name: Install dependencies | |
| run: | | |
| bundle install | |
| - name: Install old versions | |
| run: | | |
| rake benchmark:old_versions:install | |
| - name: Benchmark | |
| run: | | |
| rake benchmark |