Skip to content

Commit

Permalink
Add GitHub Workflow to run tests
Browse files Browse the repository at this point in the history
  • Loading branch information
jszwedko authored Apr 23, 2024
1 parent 1b5c5db commit ac846d0
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Test

on:
push:
pull_request:

jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
ruby-version: ['3.0']

steps:
- uses: actions/checkout@v3
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: 3.0
bundler-cache: true
- name: Run tests
run: bundle exec rake

0 comments on commit ac846d0

Please sign in to comment.