Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion .github/workflows/pr-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ jobs:
go-version: '1.23'

- name: Start the database
run: docker compose -f services/docker-database.yml up -d
run: docker compose -f services/docker-database.yml up -d --wait

- name: Run identity tests
run: |
Expand All @@ -241,6 +241,11 @@ jobs:
working-directory: services/community


- name: Install system dependencies for workshop
run: |
sudo apt-get update
sudo apt-get install -y libcairo2-dev pkg-config python3-dev

- name: Run workshop tests
run: |
cd services/workshop
Expand Down
Loading