c3lf-system-3/.forgejo/workflows/deploy.yml
2024-11-09 05:36:13 +01:00

23 lines
453 B
YAML

on:
push:
branches:
- live
- testing
jobs:
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
container:
image: docker.io/serversideup/ansible:latest
steps:
- run: ansible --version