Skip to content

Commit f6cb078

Browse files
committed
ci: add integration-test workflow
1 parent 34e64d6 commit f6cb078

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: Integration testing demo
2+
3+
on: [push]
4+
5+
jobs:
6+
integration-testing:
7+
runs-on: ubuntu-latest
8+
9+
services:
10+
postgres:
11+
image: postgres:17
12+
ports:
13+
- 5432/tcp
14+
15+
steps:
16+
- name: Run tests
17+
run: |
18+
echo "Running integration tests..."
19+
telnet 127.0.0.1 ${{ job.services.postgres.ports['5432'] }}

0 commit comments

Comments
 (0)