Skip to content

Fix broken links in the MkDocs documentation #22

Fix broken links in the MkDocs documentation

Fix broken links in the MkDocs documentation #22

Workflow file for this run

name: build
on:
push:
branches:
- master
tags:
- '*'
paths-ignore:
- '*.md'
pull_request:
paths-ignore:
- '*.md'
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Docker Buildx
id: buildx
uses: docker/setup-buildx-action@v2
- name: Test and submit coverage report
run: |
docker build -t django-docker-template:master .
docker run --rm -v $(pwd)/website/:/usr/src/website django-docker-template:master ./pytest.sh
pip install coveralls
cd website && coveralls --service=github
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}