dependabot[bot] 73f7ab8ff4
Bump actions/checkout from 3 to 4 (#1019)
Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 4.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](https://github.com/actions/checkout/compare/v3...v4)

---
updated-dependencies:
- dependency-name: actions/checkout
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-02-12 15:15:20 +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@v4.6.1
with:
python-version: 3.11
- name: Pip Install
run: |
pip install -r requirements.txt
- name: Build
run: |
./bin/build --ci