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