Skip to content

Commit

Permalink
Setup CI (#12)
Browse files Browse the repository at this point in the history
  • Loading branch information
Darhazer authored Aug 10, 2023
1 parent f51059a commit 348ef03
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: CI

on:
pull_request:
push:
branches:
- master

jobs:
main:
runs-on: ubuntu-latest
strategy:
matrix:
ruby:
- "2.7"
- "3.0"
- "3.1"
- "3.2"

name: "Ruby ${{ matrix.ruby }}: run tests"
steps:
- uses: actions/checkout@v3
- uses: ruby/setup-ruby@v1
with:
ruby-version: "${{ matrix.ruby }}"
bundler-cache: true
- run: bundle exec rspec

0 comments on commit 348ef03

Please sign in to comment.