2023-10-22 22:06:23 +00:00
|
|
|
name: Run Test Suite
|
|
|
|
run-name: ${{ github.actor }} is running the test suite
|
|
|
|
on: [push]
|
|
|
|
jobs:
|
|
|
|
Run-Test-Suite:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v3
|
|
|
|
- name: Set up Ruby
|
|
|
|
run: |
|
2023-10-22 22:11:53 +00:00
|
|
|
apt-get update
|
|
|
|
apt-get install -y rbenv
|
|
|
|
rbenv install --list
|
|
|
|
- name: Bundle
|
|
|
|
run: bundle
|
|
|
|
- name: Run tests
|
|
|
|
run: bundle exec rspec
|