We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents e9fded1 + 5c86cba commit a5fdf40Copy full SHA for a5fdf40
1 file changed
.github/workflows/ci.yml
@@ -0,0 +1,28 @@
1
+name: CI
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - main
7
+ pull_request:
8
9
10
+ schedule:
11
+ - cron: '0 0 * * *'
12
13
+jobs:
14
+ build:
15
+ runs-on: ubuntu-latest
16
17
+ steps:
18
+ - name: Code checkout
19
+ uses: actions/checkout@v3
20
21
+ - name: Docker-compose configurations
22
+ run: docker-compose up -d
23
24
+ - name: Check if docker-compose is working
25
+ run: docker-compose ps
26
27
+ - name: Stop and remove docker-compose containers
28
+ run: docker-compose down
0 commit comments