mirror of
https://github.com/status-im/spiff-arena.git
synced 2025-01-16 21:24:19 +00:00
29 lines
501 B
YAML
29 lines
501 B
YAML
|
name: 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@v3.3.0
|
||
|
|
||
|
- 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
|