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 35720fa
Showing 1 changed file with 46 additions and 0 deletions.
46 changes: 46 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
---
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
run: |
gem update --system
bundle install
- name: RSpec
run: bin/rspec

0 comments on commit 35720fa

Please sign in to comment.