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 22, 2024
1 parent 8aec4d8 commit b7fc98a
Showing 1 changed file with 44 additions and 0 deletions.
44 changes: 44 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
---
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: bundle install

- name: RSpec
run: bin/rspec

0 comments on commit b7fc98a

Please sign in to comment.