Skip to content

Commit

Permalink
Add tests CI matrix with Ruby 3.3 only for now
Browse files Browse the repository at this point in the history
  • Loading branch information
javierjulio committed Sep 27, 2024
1 parent b528287 commit 8940fdc
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Tests

on:
push:
branches:
- master
pull_request:

jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
ruby:
- '3.3'
name: Ruby ${{ matrix.ruby }}
steps:
- uses: actions/checkout@v4
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
- name: Run Tests
env:
RUBYOPT: "-W:deprecated"
run: bundle exec rake test

0 comments on commit 8940fdc

Please sign in to comment.