With PATs #776
Workflow file for this run
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: E2E release compatibility | |
on: | |
merge_group: | |
push: | |
pull_request: | |
jobs: | |
end_to_end_release_compatibility: | |
name: Postgres tests | |
runs-on: ubuntu-latest | |
steps: | |
- name: Install `just` | |
uses: extractions/setup-just@v1 | |
- name: Check out `ndc-postgres` | |
uses: actions/checkout@v3 | |
with: | |
repository: hasura/ndc-postgres | |
path: ndc-postgres | |
- name: Check out `v3-engine` | |
uses: actions/checkout@v3 | |
with: | |
repository: hasura/v3-engine | |
path: v3-engine | |
token: ${{ secrets.SSH_GIT_ACCESS_PRIVATE }} | |
- name: Check out `v3-e2e-testing` | |
uses: actions/checkout@v3 | |
with: | |
repository: hasura/v3-e2e-testing | |
path: v3-e2e-testing | |
token: ${{ secrets.SSH_GIT_ACCESS_PRIVATE }} | |
- name: Run the tests | |
run: just test-postgres-new | |
working-directory: v3-e2e-testing |