feat: Adds new filters to increase Postgrest parity #129
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: WALRUS tests | |
| on: | |
| pull_request: | |
| branches: [master] | |
| push: | |
| branches: [master] | |
| jobs: | |
| autotests: | |
| name: Run tests | |
| runs-on: ubuntu-latest | |
| container: | |
| image: supabase/postgres:17.6.1.054 | |
| options: --tmpfs=/pgtmpfs -e PGDATA=/pgtmpfs | |
| steps: | |
| - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 | |
| - name: Run Test | |
| run: | | |
| chown -R postgres /__w/walrus/walrus | |
| su postgres -c 'export PATH=$PATH:/usr/lib/postgresql/17/bin/ ; bin/installcheck' | |
| - uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 | |
| if: always() | |
| with: | |
| name: regression.out | |
| path: regression.out | |
| retention-days: 7 |