Skip to content

Commit

Permalink
Refresh CI setup: test against newer Rubies, use official actions
Browse files Browse the repository at this point in the history
  • Loading branch information
Envek committed Apr 27, 2024
1 parent 6553164 commit f1d5d75
Showing 1 changed file with 8 additions and 18 deletions.
26 changes: 8 additions & 18 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,36 +18,26 @@ jobs:
fail-fast: false
matrix:
include:
- ruby: "3.3"
puma: "6"
- ruby: "3.2"
puma: "6"
- ruby: "3.1"
puma: "6"
- ruby: "3.0"
puma: "5"
- ruby: "2.7"
puma: "5"
- ruby: "2.6"
puma: "4"
- ruby: "2.5"
puma: "4"
container:
image: ruby:${{ matrix.ruby }}
env:
CI: true
PUMA_VERSION: ${{ matrix.puma }}
steps:
- uses: actions/checkout@v3
- uses: actions/cache@v3
- uses: actions/checkout@v4
- uses: ruby/setup-ruby@v1
with:
path: vendor/bundle
key: bundle-${{ matrix.ruby }}-${{ hashFiles('**/*.gemspec') }}-${{ hashFiles('**/Gemfile') }}
restore-keys: |
bundle-${{ matrix.ruby }}-${{ hashFiles('**/*.gemspec') }}-${{ hashFiles('**/Gemfile') }}
bundle-${{ matrix.ruby }}-
- name: Upgrade Bundler to 2.0 (for older Rubies)
run: gem install bundler -v '~> 2.0'
- name: Bundle install
run: |
bundle config path vendor/bundle
bundle install
bundle update
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- name: Run RSpec
run: bundle exec rspec

0 comments on commit f1d5d75

Please sign in to comment.