Skip to content

Added workflow to run unit tests #1

Added workflow to run unit tests

Added workflow to run unit tests #1

name: "Run unit tests"
on:
push:
branches: [ "main" ]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install Ruby and gems
uses: ruby/setup-ruby@v1
with:
bundler-cache: true
- name: Run tests
run: bundle exec rails test