Skip to content

Commit

Permalink
Merge pull request #1 from onrunning/ci
Browse files Browse the repository at this point in the history
Add CI workflow
  • Loading branch information
severin authored Apr 16, 2024
2 parents 60eb103 + f1c94a5 commit fb8d1ba
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 fb8d1ba

Please sign in to comment.