Skip to content

Add Github Action to run tests #1

Add Github Action to run tests

Add Github Action to run tests #1

Workflow file for this run

name: Run MiniTest
on: [push]
jobs:
run-minitest:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
# Not needed with a .ruby-version file
ruby-version: 3.2.2
# runs 'bundle install' and caches installed gems automatically
bundler-cache: true
- name: Run tests
run: |
rails test