Skip to content

Commit a5fdf40

Browse files
Merge pull request #10 from VitorCarvalho67/FixBranch
Fix branch
2 parents e9fded1 + 5c86cba commit a5fdf40

1 file changed

Lines changed: 28 additions & 0 deletions

File tree

.github/workflows/ci.yml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
name: CI
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
pull_request:
8+
branches:
9+
- main
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

Comments
 (0)