Skip to content

docs: update homebrew installation note (#1330) #29

docs: update homebrew installation note (#1330)

docs: update homebrew installation note (#1330) #29

Workflow file for this run

name: Docker CI
on:
push:
jobs:
docker:
timeout-minutes: 10
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Start containers
run: docker-compose up -d redis postgres
- name: Build image
run: docker-compose build
- name: Run tests
run: docker-compose run spec
- name: Stop containers
if: always()
run: docker-compose down