Skip to content

Commit

Permalink
move to GitHub actions
Browse files Browse the repository at this point in the history
  • Loading branch information
henrikbjorn committed Feb 27, 2024
1 parent 0c2be07 commit 4a8bf2f
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Test

on:
push:

jobs:
test:
runs-on: ubuntu-latest

strategy:
matrix:
ruby-version:
- 2.6
- 2.7
- 3.0
- 3.1
- 3.2
steps:
- uses: actions/checkout@v4
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby-version }}
bundler-cache: true

- run: bundle exec rake

0 comments on commit 4a8bf2f

Please sign in to comment.