mirror of
https://github.com/ansible/awx.git
synced 2026-01-10 15:32:07 -03:30
* [CI] Reduce GHA timeouts from 6h default The goal here is to never interfere with a real run (so most of the timeout-minutes values seem rather high) but to avoid having 6h long runs if something goes crazy and never ends. Signed-off-by: Rick Elrod <rick@elrod.me> * Do bash hackery instead Signed-off-by: Rick Elrod <rick@elrod.me> --------- Signed-off-by: Rick Elrod <rick@elrod.me>
18 lines
310 B
YAML
18 lines
310 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@v3
|
|
|
|
- name: install tox
|
|
run: pip install tox
|
|
|
|
- name: Assure docs can be built
|
|
run: tox -e docs
|