Skip to content

Commit

Permalink
Test on ruby 3.3
Browse files Browse the repository at this point in the history
  • Loading branch information
jcoyne committed Dec 4, 2024
1 parent ffc1736 commit caf1efd
Showing 1 changed file with 18 additions and 18 deletions.
36 changes: 18 additions & 18 deletions .github/workflows/ruby.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,29 +2,29 @@ name: CI

on:
push:
branches: [ main ]
branches: [main]
pull_request:
branches: [ main ]
branches: [main]

jobs:
tests:
runs-on: ubuntu-latest
strategy:
matrix:
ruby: ['3.2']
ruby: ["3.2", "3.3"]
steps:
- uses: actions/checkout@v4
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
- name: Configure bundler
run: bundle config set --local without 'production symphony'
- name: Install ruby dependencies
run: |
bundle config path vendor/bundle
bundle install
- name: Install javascript dependencies
run: yarn install
- name: Run tests
run: bundle exec rake
- uses: actions/checkout@v4
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
- name: Configure bundler
run: bundle config set --local without 'production'
- name: Install ruby dependencies
run: |
bundle config path vendor/bundle
bundle install
- name: Install javascript dependencies
run: yarn install
- name: Run tests
run: bundle exec rake

0 comments on commit caf1efd

Please sign in to comment.