Bump ruby/setup-ruby from 1.204.0 to 1.205.0 (#105) #159
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: Tests | |
on: | |
push: | |
branches: [ 'main' ] | |
pull_request: | |
branches: [ 'main' ] | |
jobs: | |
RSpec: | |
runs-on: ubuntu-latest | |
## | |
# Ruby 3.3 | |
# status: preview | |
# release date: | |
# normal maintenance until: TBD | |
# EOL: TBD | |
# Ruby 3.2 | |
# status: normal maintenance | |
# release date: 2022-12-25 | |
# normal maintenance until: TBD | |
# EOL: 2026-03-31 (expected) | |
# Ruby 3.1 | |
# status: normal maintenance | |
# release date: 2021-12-25 | |
# normal maintenance until: TBD | |
# EOL: 2025-03-31 (expected) | |
# Ruby 3.0 | |
# status: security maintenance | |
# release date: 2020-12-25 | |
# normal maintenance until: 2023-04-01 | |
# EOL: 2024-03-31 (expected) | |
strategy: | |
matrix: | |
ruby: | |
- 3.4.0-preview1 | |
- 3.3 | |
- 3.2 | |
- 3.1 | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Install Ruby and gems | |
uses: ruby/setup-ruby@540484a3c0f308b08619664ec40bf6c371d172c3 | |
with: | |
ruby-version: ${{ matrix.ruby }} | |
- name: Install dependencies | |
run: | | |
bundle config path vendor/bundle | |
bundle config --local without 'development' | |
bundle install --jobs 4 --retry 3 | |
- name: Run the default task | |
run: bundle exec rspec |