Skip to content

Commit

Permalink
Setup GitHub CI.
Browse files Browse the repository at this point in the history
  • Loading branch information
ppostma committed Dec 6, 2024
1 parent 138344e commit 087fdc6
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: CI

on:
- push
- pull_request

jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
ruby-version: [3.0, 3.1, 3.2, 3.3, 3.4]

steps:
- uses: actions/checkout@v2
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby-version }}
bundler-cache: true
- name: Run tests
run: bundle exec rake

0 comments on commit 087fdc6

Please sign in to comment.