Skip to content

Run Tests

Run Tests #115

Workflow file for this run

name: Run Tests
on:
workflow_run:
workflows: ["CI"]
types:
- completed
env:
REGISTRY: ghcr.io
IMAGE_NAME: ${{ github.repository }}
jobs:
test:
if: ${{ github.event.workflow_run.conclusion == 'success' }}
runs-on: ubuntu-latest
steps:
- name: Set up Docker
uses: docker/[email protected]
- name: Log in to Docker Hub
uses: docker/[email protected]
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Extract Docker metadata
id: meta
uses: docker/[email protected]
with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
flavor: latest=${{ env.BRANCH == 'master' }}
- name: Pull Docker image
run: docker pull ${{ steps.meta.outputs.tags }}
- name: Run tests
run: docker run --rm ${{ steps.meta.outputs.tags }} ./manage.py test