Move the test workflow out

This commit is contained in:
Lukáš Kucharczyk 2023-11-18 10:36:41 +01:00
parent 47f008628f
commit 32c632f7a6
Signed by: lukas
SSH Key Fingerprint: SHA256:vMuSwvwAvcT6htVAioMP7rzzwMQNi3roESyhv+nAxeg
1 changed files with 2 additions and 9 deletions

View File

@ -1,18 +1,11 @@
name: Django CI/CD
name: Build and upload container
on:
push:
branches: [ main ]
paths-ignore: [ 'README.md' ]
jobs:
test:
runs-on: python:3.12
steps:
- python -m pip install poetry
- poetry install
- poetry env info
- poetry run python manage.py migrate
- poetry run pytest
build-and-push:
runs-on: ubuntu-latest
if: github.ref == 'refs/heads/main'