Skip to content

Deploy to testnet #2297

Deploy to testnet

Deploy to testnet #2297

Workflow file for this run

name: Unit test
on: [pull_request]
jobs:
build:
runs-on: ubuntu-latest
services:
postgres:
image: postgres:14
env:
POSTGRES_PASSWORD: postgres
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
ports:
- 5432:5432
redis:
image: redis
ports: ['6379:6379']
options: --entrypoint redis-server
steps:
- uses: actions/checkout@v3
- uses: ruby/setup-ruby@v1
with:
bundler-cache: true
- name: Build and test with Rake
run: |
sudo gem install bundler:2.0.1
bundle install --jobs 4 --retry 3
bundle exec rails db:setup RAILS_ENV=test
cp .env.test.local.travis .env.test.local
bundle exec rails test RAILS_ENV=test