Skip to content

chore(#35): add docker + Makefile for local dev #161

chore(#35): add docker + Makefile for local dev

chore(#35): add docker + Makefile for local dev #161

Workflow file for this run

# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.
# GitHub recommends pinning actions to a commit SHA.
# To get a newer version, you will need to update the SHA.
# You can also reference a tag or branch, but the action may change without warning.
name: Ruby
on:
push:
branches: [main]
pull_request:
branches: [main]
env:
OB_CLIENT_ID: ${{ secrets.OB_CLIENT_ID }}
OB_CLIENT_SECRET: ${{ secrets.OB_CLIENT_SECRET }}
RAILS_ENV: test
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Check lint issues
run: make lint
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Run tests in docker container
run: make test
env:
OB_CLIENT_ID: ${{ secrets.OB_CLIENT_ID }}
OB_CLIENT_SECRET: ${{ secrets.OB_CLIENT_SECRET }}