Test with Ubuntu 24.04, remove 20.04 (#4) #23
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: Debug | |
on: | |
push: | |
workflow_dispatch: | |
jobs: | |
test: | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ ubuntu-22.04, ubuntu-24.04 ] | |
name: ${{ matrix.os }} | |
runs-on: ${{ matrix.os }} | |
continue-on-error: true # prevent the workflow to fail if this job fails | |
steps: | |
- run: sudo ls -al /etc/postgresql | |
continue-on-error: true | |
- run: sudo cat /etc/postgresql/*/main/pg_hba.conf | |
continue-on-error: true | |
# the action steps | |
- run: sudo sed -i s/scram-sha-256/trust/g /etc/postgresql/*/main/pg_hba.conf | |
continue-on-error: true | |
- run: sudo systemctl start postgresql.service | |
continue-on-error: true | |
- run: sudo -u postgres createuser --createdb --superuser ${USER} | |
continue-on-error: true | |
- run: createdb ${USER} | |
continue-on-error: true | |
- run: echo "POSTGRES_URL=postgres://localhost/${USER}" >> $GITHUB_ENV | |
continue-on-error: true | |
# the test steps | |
- run: psql --version | |
continue-on-error: true | |
- run: pg_isready --dbname=$POSTGRES_URL | |
continue-on-error: true | |
- run: psql --command='CREATE TABLE tbl()' $POSTGRES_URL | |
continue-on-error: true | |
- run: psql --command='\d' $POSTGRES_URL | |
continue-on-error: true | |
- run: psql --command='SELECT * FROM pg_available_extensions' $POSTGRES_URL | |
continue-on-error: true |