Skip to content

Merge branch 'main' into feature/secret-key #42

Merge branch 'main' into feature/secret-key

Merge branch 'main' into feature/secret-key #42

Workflow file for this run

name: CI tests
on:
push:
branches:
- '!main'
- '!feature/**'
concurrency:
group: ${{ github.ref }}-test
cancel-in-progress: true
jobs:
python:
name: Python
uses: ./.github/workflows/_docker-build-deploy.yml
with:
image-name: tna-python
docker-context: docker/tna-python
dockerfile: Dockerfile
publish: false
python-root:
name: Python (root)
needs: python
uses: ./.github/workflows/_docker-build-deploy.yml
with:
image-name: tna-python-root
docker-context: docker/tna-python-root
dockerfile: Dockerfile
publish: false
ignore-linting-rules: DL3002
python-django:
name: Python Django

Check failure on line 35 in .github/workflows/test.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/test.yml

Invalid workflow file

You have an error in your yaml syntax on line 35
needs: python
uses: ./.github/workflows/_docker-build-deploy.yml
with:
image-name: tna-python-django
docker-context: docker/tna-python-django
dockerfile: Dockerfile
publish: false
python-django-root:
name: Python Django (root)
needs: python-django
uses: ./.github/workflows/_docker-build-deploy.yml
with:
image-name: tna-python-django-root
docker-context: docker/tna-python-django-root
dockerfile: Dockerfile
publish: false
ignore-linting-rules: DL3002