Skip to content

Commit

Permalink
Add GH workflow for tests
Browse files Browse the repository at this point in the history
  • Loading branch information
mkllnk committed Feb 29, 2024
1 parent f98862d commit 42700e5
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Automated tests
on:
push:
branches:
- main
pull_request:
branches:
- main

jobs:
test:
name: test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: ruby/setup-ruby@v1
with:
ruby-version: '3.1'
bundler-cache: true
- run: bundle exec rspec

0 comments on commit 42700e5

Please sign in to comment.