feat: new theme + audodiscovery docs #280
Workflow file for this run
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: CI | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| jobs: | |
| verify-tomls: | |
| runs-on: blacksmith-4vcpu-ubuntu-2404 | |
| timeout-minutes: 30 | |
| env: | |
| PGDOG_IMAGE: ghcr.io/pgdogdev/pgdog-enterprise:main-ent | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Pull PgDog Enterprise image | |
| run: docker pull "$PGDOG_IMAGE" | |
| - name: Install test dependencies | |
| run: sudo pip3 install -r tests/requirements.txt | |
| - name: Run tests | |
| run: python3 tests/test_code_blocks.py tests/pgdog-docker.sh |