Files
scylladb/.github/workflows/docs-pr.yaml
2022-02-09 11:13:38 +00:00

26 lines
555 B
YAML

name: "Docs / Build PR"
on:
pull_request:
branches:
- master
paths:
- "docs/**"
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
with:
persist-credentials: false
fetch-depth: 0
- name: Set up Python
uses: actions/setup-python@v2.3.2
with:
python-version: 3.7
- name: Set up Poetry
run: curl -sSL https://install.python-poetry.org | python -
- name: Build docs
run: make -C docs test