Allow configure histogram buckets (#10) #17
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: Tests | |
| on: | |
| pull_request: | |
| push: | |
| branches: | |
| - '**' | |
| tags-ignore: | |
| - 'v*' | |
| jobs: | |
| test: | |
| # Skip running tests for local pull requests (use push event instead), run only for foreign ones | |
| if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.owner.login != github.event.pull_request.base.repo.owner.login | |
| name: 'Ruby ${{ matrix.ruby }}' | |
| runs-on: ubuntu-latest | |
| continue-on-error: ${{ matrix.optional || false }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| ruby: | |
| - '2.7' | |
| - '3.0' | |
| - '3.1' | |
| - '3.2' | |
| - '3.3' | |
| - '3.4' | |
| include: | |
| - ruby: head | |
| - optional: true | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: ruby/setup-ruby@v1 | |
| with: | |
| ruby-version: ${{ matrix.ruby }} | |
| bundler-cache: true | |
| - name: Run RSpec | |
| run: bundle exec rspec |