Skip to content

Commit 2277458

Browse files
committed
Add ci pipeline
1 parent 0185738 commit 2277458

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

.github/workflows/ci.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
name: Continuous Integration
2+
3+
on: [push, pull_request]
4+
5+
jobs:
6+
web:
7+
runs-on: ubuntu-latest
8+
steps:
9+
- uses: actions/checkout@v1
10+
- name: Build the docker image
11+
run: docker-compose build
12+
- name: Use pytest to execute the tests
13+
run: docker-compose run web pytest

0 commit comments

Comments
 (0)