Skip to content

Commit

Permalink
Fix PR workflow
Browse files Browse the repository at this point in the history
create the directory before running the container
  • Loading branch information
CharlesNepote authored Jan 17, 2025
1 parent af8720c commit 64e7b03
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,12 @@ jobs:
uses: actions/checkout@v4
with:
fetch-depth: 1
- name: start a postgresql docker container
run: ./start_postgres.sh &
- name: create pgdata directory
run: mkdir -p /home/runner/work/folksonomy_api/folksonomy_api/data/pg/pgdata
- name: change permissions for pgdata directory
run: sudo chmod -R 777 /home/runner/work/folksonomy_api/folksonomy_api/data/pg/pgdata
- name: start a postgresql docker container
run: ./start_postgres.sh &
- name: install python
uses: actions/[email protected]
with:
Expand Down

0 comments on commit 64e7b03

Please sign in to comment.