Skip to content

Commit

Permalink
fixing postgresql 15 permission errors
Browse files Browse the repository at this point in the history
  • Loading branch information
BalusC committed Jan 24, 2025
1 parent 23d50aa commit 29829a2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/jakartified.maven.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,8 @@ jobs:
sudo systemctl start postgresql.service
sudo -u postgres psql postgres -c "CREATE DATABASE test;"
sudo -u postgres psql postgres -c "CREATE USER test WITH ENCRYPTED PASSWORD 'test';"
sudo -u postgres psql postgres -c "ALTER SCHEMA public OWNER TO test;"
sudo -u postgres psql postgres -c "GRANT ALL PRIVILEGES ON DATABASE test TO test;"
sudo -u postgres psql postgres -c "GRANT USAGE, CREATE ON SCHEMA public TO test;"
sudo -u postgres psql postgres -c "\c test postgres"
sudo -u postgres psql postgres -c "GRANT ALL ON SCHEMA public TO test;"
- name: Test with Maven
run: mvn verify -Dmaven.javadoc.skip=true -P ${{matrix.server}}
run: mvn -B verify -Dmaven.javadoc.skip=true -P ${{matrix.server}}

0 comments on commit 29829a2

Please sign in to comment.