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 06a0b6a
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
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 06a0b6a

Please sign in to comment.