doc_infra/.forgejo/workflows/test.yml
Michaël Ricart 40136474ad
All checks were successful
/ test (push) Successful in 12s
fix missing folder
2025-02-14 21:55:37 +01:00

38 lines
813 B
YAML

on:
workflow_dispatch:
push:
branches:
- 'mai*'
jobs:
test:
runs-on: self-hosted
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Checkout oxidized
uses: actions/checkout@v4
with:
repository: milka64/oxidized
token: ${{ secrets.TOKEN }}
path: oxidized
ref: master
- name: Checkout nginx config
uses: actions/checkout@v4
with:
repository: milka64/nginx-config
token: ${{ secrets.TOKEN }}
path: nginx-config
ref: main
- name: "create devices directory"
run: 'mkdir source/devices'
- name: Parsing conf
run: "cd parsers && python3.11 base.py"
- name: Builing documentation
run: 'make html'