We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2d1b273 commit fb812b6Copy full SHA for fb812b6
1 file changed
.github/workflows/backend.yml
@@ -0,0 +1,24 @@
1
+name: backend CI
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - "**"
7
8
+jobs:
9
+ build-and-test:
10
+ runs-on: ubuntu-latest
11
12
+ steps:
13
+ - name: Checkout repository
14
+ uses: actions/checkout@v4
15
16
+ - name: Set up Docker Buildx
17
+ uses: docker/setup-buildx-action@v2
18
19
+ - name: Run tests in Docker container
20
+ run: sh test_runners/persistence/dockerized.sh
21
22
+ - name: Show logs on failure
23
+ if: failure()
24
+ run: docker-compose -f test_runners/persistence/docker-compose.yml logs
0 commit comments