dependabot[bot] ef52a024b3
Bump actions/setup-python from 5.1.1 to 5.2.0 (#2069)
Bumps [actions/setup-python](https://github.com/actions/setup-python) from 5.1.1 to 5.2.0.
- [Release notes](https://github.com/actions/setup-python/releases)
- [Commits](https://github.com/actions/setup-python/compare/v5.1.1...v5.2.0)

---
updated-dependencies:
- dependency-name: actions/setup-python
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-08-29 14:34:01 +00:00

29 lines
503 B
YAML

name: Build Docs
on:
- push
- pull_request
defaults:
run:
working-directory: docs
jobs:
build:
name: build-docs
runs-on: ubuntu-latest
steps:
- name: Check out the repository
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5.2.0
with:
python-version: 3.12
- name: Pip Install
run: |
pip install -r requirements.txt
- name: Build
run: |
./bin/build --ci