Skip to content

Commit

Permalink
Also run Ruby tests in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
ErikSchierboom committed Oct 26, 2023
1 parent ba95985 commit d5f302f
Showing 1 changed file with 20 additions and 1 deletion.
21 changes: 20 additions & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,26 @@ on:
- main

jobs:
test:
unit_tests:
runs-on: ubuntu-22.04

steps:
- name: Checkout code
uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9

- name: Setup Ruby
uses: ruby/setup-ruby@52b8784594ec115fd17094752708121dc5dabb47
with:
ruby-version: .ruby-version
bundler-cache: true

- name: Install gems
run: bundle install

- name: Run tests
run: bundle exec rake test

smoke_tests:
runs-on: ubuntu-22.04

steps:
Expand Down

0 comments on commit d5f302f

Please sign in to comment.