add test stage in workflow
This commit is contained in:
parent
fde173baf7
commit
9beb60414c
1 changed files with 8 additions and 1 deletions
|
@ -1,6 +1,13 @@
|
|||
on: [push]
|
||||
on: [ push ]
|
||||
jobs:
|
||||
test:
|
||||
runs-on: docker
|
||||
container:
|
||||
image: docker.io/python:latest
|
||||
steps:
|
||||
- run: pip install -r core/requirements.dev.txt
|
||||
- run: python manage.py test
|
||||
deploy:
|
||||
runs-on: docker
|
||||
container:
|
||||
image: docker.io/serversideup/ansible:latest
|
||||
|
|
Loading…
Reference in a new issue