Skip to content

Commit

Permalink
add initial workflow for tests
Browse files Browse the repository at this point in the history
  • Loading branch information
ozantepe committed Feb 2, 2024
1 parent 590fa8a commit e8bbf34
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/rspec-tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: RSpec Tests
run-name: ${{ github.actor }} is running rspec tests
on:
pull-request:
push:
branches: 'main'

jobs:
run-specs:
runs-on: macos
steps:
- name: Checkout repo
uses: actions/checkout@v4

- name: Set up ruby
uses: ruby/setup-ruby@ec02537da5712d66d4d50a0f33b7eb52773b5ed1
with:
ruby-version: '3.1'
bundler-cache: true

- name: Run specs
run: bundle exec rspec spec

0 comments on commit e8bbf34

Please sign in to comment.