Skip to content

use .env.example instead of listing the env vars in the workflow #10

use .env.example instead of listing the env vars in the workflow

use .env.example instead of listing the env vars in the workflow #10

Workflow file for this run

name: test
on: push
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: cp .env.example .env
- uses: ruby/setup-ruby@v1
with:
ruby-version: 3.1.4
bundler-cache: true
- run: bundle exec rails test