Skip to content

Test with Github actions #1

Test with Github actions

Test with Github actions #1

Workflow file for this run

name: Test
on: push
jobs:
test:
name: Run tests
runs-on: ubuntu-latest
env:
RAILS_ENV: test
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Setup Ruby
uses: ruby/setup-ruby@v1
with:
bundler-cache: true
- name: Run tests
run: bundle exec rake