Skip to content

Commit

Permalink
Add CI workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
severin committed Apr 8, 2024
1 parent 60eb103 commit f1c94a5
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: CI

on:
push:
branches:
- "v2.99.3-with-ruby3-compat"
pull_request:
branches:
- "v2.99.3-with-ruby3-compat"

jobs:
ci:
runs-on: ubuntu-latest

strategy:
fail-fast: false
matrix:
ruby-version: ['2.7']

steps:
- uses: actions/checkout@v4
with:
persist-credentials: false

- name: Setup Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby-version }}
bundler-cache: true

- name: Run tests
run: |
bundle exec rake test

0 comments on commit f1c94a5

Please sign in to comment.