Skip to content

Development Environment #860

Development Environment

Development Environment #860

Workflow file for this run

name: Development Environment
on:
schedule:
- cron: '0 13 * * *' # once a day at around 9am eastern
workflow_dispatch:
jobs:
build:
# TODO: Should we test on other platforms like Windows and Mac?
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
with:
persist-credentials: false
- run: make build
- run: docker compose up -d
- run: docker compose ps
- run: make initdb
- run: make tests