Skip to content

Commit

Permalink
ci: add workflow to run rspec
Browse files Browse the repository at this point in the history
  • Loading branch information
just1602 committed Apr 20, 2024
1 parent cbb3fb8 commit 971f085
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
on: [push]

name: specs

jobs:
run:
runs-on: ubuntu-latest

steps:
- name: Checkout repository
uses: actions/checkout@master

- name: Set up Ruby
uses: ruby/setup-ruby@master
with:
bundler-cache: true

- name: Run rspec
run: bundle exec rspec

0 comments on commit 971f085

Please sign in to comment.