Skip to content

Commit

Permalink
Add GithubAction config
Browse files Browse the repository at this point in the history
  • Loading branch information
n-rodriguez committed Aug 27, 2024
1 parent 8aec4d8 commit ce9cab6
Showing 1 changed file with 58 additions and 0 deletions.
58 changes: 58 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
---
name: CI

on:
push:
branches:
- '**'
pull_request:
branches:
- '**'

jobs:
rspec:
runs-on: ubuntu-latest

strategy:
fail-fast: false
matrix:
ruby:
- '3.3'
- '3.2'
- '3.1'
- '3.0'
- '2.7'
- '2.6'
- '2.5'
- '2.4'
- '2.3'
- 'head'

steps:
- name: Checkout
uses: actions/checkout@v4

- name: Setup Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}

- name: Run bundler
env:
RUBY_VERSION: ${{ matrix.ruby }}
run: |
case ${RUBY_VERSION} in
2.3|2.4|2.5|2.6|2.7)
gem update --system 3.2.3
bundle update --bundler
;;
*)
gem update --system
;;
esac
bundle install
- name: RSpec
run: bin/rspec

0 comments on commit ce9cab6

Please sign in to comment.