Skip to content

Commit

Permalink
Merge pull request #6 from planningcenter/ms/github-actions-1
Browse files Browse the repository at this point in the history
Setup GH Actions
  • Loading branch information
maddiesch authored Aug 7, 2024
2 parents 81c4b24 + 696ec75 commit f575170
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Test
on:
push:
branches: [ "main" ]
pull_request: {}
permissions:
contents: read
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
ruby-version: ['3.0', '3.1']
steps:
- uses: actions/checkout@v4
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby-version }}
bundler-cache: true
- name: Run tests
run: bundle exec rspec

0 comments on commit f575170

Please sign in to comment.