Development Environment #434
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- run: make build | |
- run: docker compose up -d | |
- run: docker compose ps | |
- run: make initdb | |
- run: make tests |