mirror of
https://github.com/ansible/awx.git
synced 2026-01-09 23:12:08 -03:30
24 lines
447 B
YAML
24 lines
447 B
YAML
---
|
|
name: Docsite CI
|
|
on:
|
|
pull_request:
|
|
jobs:
|
|
docsite-build:
|
|
name: docsite test build
|
|
runs-on: ubuntu-latest
|
|
timeout-minutes: 30
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
with:
|
|
show-progress: false
|
|
|
|
- uses: ./.github/actions/setup-python
|
|
with:
|
|
python-version: '3.x'
|
|
|
|
- name: install tox
|
|
run: pip install tox
|
|
|
|
- name: Assure docs can be built
|
|
run: tox -e docs
|