Skip to content

Commit

Permalink
enable GH Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
markets committed Feb 4, 2024
1 parent 4fa45ea commit 2aad59a
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: CI

on: [push]

jobs:
test:
runs-on: ubuntu-latest
name: ubuntu-ruby-${{ matrix.ruby-version }}
strategy:
fail-fast: false
matrix:
ruby-version: ["3.3", "3.2", "3.1", "3.0", "2.7", "2.6", "2.5"]
steps:
- uses: actions/checkout@v4
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby-version }}
bundler-cache: true
- name: Runs tests
run: bundle exec rake test

0 comments on commit 2aad59a

Please sign in to comment.