Merge pull request #89 from supabase/rs/bump-edition #157
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: Test | |
| on: | |
| pull_request: | |
| push: { branches: [master] } | |
| permissions: | |
| contents: read | |
| jobs: | |
| test: | |
| name: Run tests | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v6 | |
| - name: Build docker images | |
| run: docker compose -f .ci/docker-compose.yaml build | |
| - name: Run tests | |
| run: docker compose -f .ci/docker-compose.yaml run test_pg_jsonschema |