Skip to content
This repository has been archived by the owner on Apr 8, 2024. It is now read-only.

Adjust "machine data" mention #211

Adjust "machine data" mention

Adjust "machine data" mention #211

Workflow file for this run

name: docs
on:
pull_request: ~
push:
branches:
- master
# Allow job to be triggered manually.
workflow_dispatch:
# Cancel in-progress jobs when pushing to the same branch.
concurrency:
cancel-in-progress: true
group: ${{ github.workflow }}-${{ github.ref }}
jobs:
documentation:
name: Build docs on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
steps:
- name: Acquire sources
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.11"
cache: 'pip'
cache-dependency-path: |
docs/requirements.txt
- name: Build docs
run: |
cd docs && make check