Skip to content

Commit

Permalink
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 bee699f commit d3e7d87
Showing 1 changed file with 22 additions and 2 deletions.
24 changes: 22 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,28 @@ on:
- main

jobs:
test:
name: Tests
unit_tests:
name: Unit tests
runs-on: ubuntu-22.04

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

- 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:
name: Smoke tests
runs-on: ubuntu-22.04

steps:
Expand Down

0 comments on commit d3e7d87

Please sign in to comment.