Skip to content

Commit

Permalink
Add basic github action yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
jrafanie committed Jul 16, 2024
1 parent 435f80a commit 47660b4
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
name: CI
on:
push:
pull_request:
workflow_dispatch:
jobs:
ci:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
ruby: [3.1, 3.2, 3.3]
rails: [61, 70, 71, 72]

# Rails 7.2 requires ruby 3.1 and higher
include:
- ruby: "3.0"
rails: 61
- ruby: "3.0"
rails: 70
- ruby: "3.0"
rails: 71
env:
BUNDLE_GEMFILE: gemfiles/rails_${{ matrix.rails }}.gemfile
steps:
- name: checkout code
uses: actions/checkout@v4
- name: setup Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- name: run tests
run: bundle exec rake

0 comments on commit 47660b4

Please sign in to comment.