Skip to content

docs: adding testcontainers documentation (#680) #80

docs: adding testcontainers documentation (#680)

docs: adding testcontainers documentation (#680) #80

Workflow file for this run

name: Publish Docs
on:
push:
branches:
- main
- develop
paths:
- 'docs/**'
- '.github/workflows/docs.yml'
workflow_dispatch:
permissions:
contents: write
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
deploy:
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
- uses: actions/checkout@v6
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: "3.x"
- name: Install MkDocs
run: pip install -r docs/requirements.txt
- name: Deploy to GitHub Pages
run: mkdocs gh-deploy --force