Skip to content

Commit 83e14f2

Browse files
committed
Simple docker compose test runner.
1 parent d54291b commit 83e14f2

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: build-and-test
2+
run-name: Build and Test run by @${{ github.actor }}
3+
4+
on: [push]
5+
6+
jobs:
7+
build_and_test:
8+
runs-on: ubuntu-latest
9+
10+
steps:
11+
- name: Checkout Repository
12+
uses: actions/checkout@v5
13+
- name: Build, start services, and run tests with Docker Compose
14+
run: docker compose -f docker-compose-test.yml build --abort-on-container-exit
15+
16+

0 commit comments

Comments
 (0)