Skip to content

Add Dark Mode to the documentation #74

Add Dark Mode to the documentation

Add Dark Mode to the documentation #74

Workflow file for this run

name: CI
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build-project:
runs-on: ubuntu-latest
steps:
- name: Checkout the repository
uses: actions/[email protected]
- name: Setup cmake
uses: jwlawson/[email protected]
with:
# We need recent version with support for WORKING_DIRECTORY in add_test()
cmake-version: '3.27.6'
- name: Run CMake
uses: threeal/[email protected]
with:
run-build: true
run-test: true
test-args: "--output-on-failure"
build-site:
runs-on: ubuntu-latest
permissions:
contents: read
packages: read
steps:
- name: Checkout
uses: actions/checkout@v3
with:
submodules: "true"
- name: Login to GitHub Container Registry
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build in the dev container image
uses: devcontainers/[email protected]
with:
imageName: ghcr.io/testcontainers/testcontainers-native-builder
cacheFrom: ghcr.io/testcontainers/testcontainers-native-builder
push: never
runCmd: |
mkdocs build
env: |
FULL_BUILD=true
GITHUB_TOKEN=${{ secrets.GITHUB_TOKEN }}