Skip to content

Commit

Permalink
ci update
Browse files Browse the repository at this point in the history
  • Loading branch information
edk committed Feb 23, 2024
1 parent bfc5a5f commit fa8c9fb
Showing 1 changed file with 5 additions and 13 deletions.
18 changes: 5 additions & 13 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,27 +11,19 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
ruby: [2.6, 2.7, 3.0, 3.1]
ruby: [2.7, 3.0, 3.3]
rails: ['rails-6', 'rails-7']

build:
runs-on: ubuntu-latest
name: Ruby ${{ matrix.ruby }}
strategy:
matrix:
ruby:
- '3.2.2'

name: Ruby ${{ matrix.ruby }} with ${{ matrix.rails }}
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v2
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
bundler-cache: true # Automatically installs gems and caches them
- name: Install dependencies
run: |
gem install appraisal
appraisal install
- name: Run tests
run: appraisal ${{ matrix.rails-version }} rake test
run: appraisal ${{ matrix.rails }} rake test

0 comments on commit fa8c9fb

Please sign in to comment.