forked from R-OV-NL/GTFS-RT
-
Notifications
You must be signed in to change notification settings - Fork 0
41 lines (34 loc) · 1.03 KB
/
test.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
name: Test service
on:
push:
branches-ignore:
- main
pull_request:
types:
- opened
- reopened
- synchronize
jobs:
build_and_test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
with:
token: ${{ secrets.SHARED_PAT }}
submodules: recursive
- name: Build and start services
run: |
docker compose -f docker-compose.test.yml up -d database
sleep 10 # Adjust sleep time as needed to allow services to start
- name: Wait for database to be ready
run: |
until docker compose -f docker-compose.test.yml exec -T database pg_isready -U postgres; do
>&2 echo "Postgres is unavailable - sleeping"
sleep 1
done
- name: Start app service
run: docker compose -f docker-compose.test.yml up --force-recreate --build --exit-code-from app app
- name: Clean up
if: always()
run: docker compose -f docker-compose.test.yml down