Skip to content

Development Environment #969

Development Environment

Development Environment #969

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
permissions:
contents: read
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
persist-credentials: false
- run: make build
- run: docker compose up -d
- run: docker compose ps
- run: make initdb
- run: make tests