add test stage in workflow
This commit is contained in:
parent
fde173baf7
commit
08f36249a9
1 changed files with 24 additions and 1 deletions
|
@ -1,6 +1,29 @@
|
||||||
on: [push]
|
on: [ push ]
|
||||||
jobs:
|
jobs:
|
||||||
test:
|
test:
|
||||||
|
runs-on: docker
|
||||||
|
container:
|
||||||
|
image: docker.io/python:latest
|
||||||
|
steps:
|
||||||
|
- name: Check out the code
|
||||||
|
uses: actions/checkout@v3
|
||||||
|
|
||||||
|
- name: Set up Python
|
||||||
|
uses: actions/setup-python@v4
|
||||||
|
with:
|
||||||
|
python-version: '3.11' # Adjust to your Django project’s Python version
|
||||||
|
|
||||||
|
- name: Install dependencies
|
||||||
|
run: |
|
||||||
|
python -m pip install --upgrade pip
|
||||||
|
pip install -r requirements.txt
|
||||||
|
|
||||||
|
- name: Run migrations
|
||||||
|
run: python manage.py migrate
|
||||||
|
|
||||||
|
- name: Run tests
|
||||||
|
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