Follow b2fac02be6ce4adde59a875f6d2d5d7cd010dfb1 in gemspec #259
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
# https://docs.github.com/ja/actions/reference/workflow-syntax-for-github-actions | |
name: Spec | |
on: | |
push: | |
branches: | |
- main | |
paths: | |
- '.github/workflows/spec.yml' | |
- '.ruby-version' | |
- '**.gemspec' | |
- 'Gemfile' | |
- 'Rakefile' | |
- '**.rb' | |
pull_request: | |
paths: | |
- '.github/workflows/spec.yml' | |
- '.ruby-version' | |
- '**.gemspec' | |
- 'Gemfile' | |
- 'Rakefile' | |
- '**.rb' | |
jobs: | |
rspec: | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-24.04] | |
ruby: ['head', '3.4', '3.3'] | |
gemfile: ['Gemfile', 'gemfiles/oldest.gemfile'] | |
runs-on: ${{ matrix.os }} | |
env: # $BUNDLE_GEMFILE must be set at the job level, so it is set for all steps | |
BUNDLE_GEMFILE: ${{ github.workspace }}/${{ matrix.gemfile }} | |
# https://github.com/kachick/irb-power_assert/blob/104834846baf5caa1e8536a11c43acdd56fc849c/CONTRIBUTING.md#adding-dependencies-for-this-gem | |
BUNDLE_WITHOUT: development | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: ${{ matrix.ruby }} | |
# Enabling is the recommended way, but it cannot detect runner changes in early stage. | |
# So disable it is better for test job, do not mind in other jobs | |
bundler-cache: false # runs 'bundle install' and caches installed gems automatically | |
- run: bundle install | |
- run: bundle exec rake spec |