E2E Tests #110
This file contains hidden or 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: E2E Tests | |
| on: | |
| schedule: | |
| - cron: '0 6 * * *' # Daily at 6am UTC | |
| workflow_dispatch: # Allow manual trigger | |
| jobs: | |
| e2e: | |
| name: E2E Tests (Container) | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 10 | |
| steps: | |
| - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6 | |
| - name: Build test container | |
| run: docker build -f Dockerfile.e2e -t gastown-test . | |
| - name: Run E2E tests | |
| run: docker run --rm gastown-test |