Makefile: Check if /guide/@self agrees with the document path #380
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Copyright 2021 Gentoo Authors | |
# Distributed under the terms of the MIT license | |
# or the CC-BY-SA-4.0 license (dual-licensed) | |
name: Devmanual CI | |
on: | |
push: | |
branches: [master] | |
pull_request: | |
branches: [master] | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest # no gentoo :( | |
steps: | |
- name: checkout | |
uses: actions/checkout@v2 | |
- name: install prerequisites | |
# librsvg2-bin for rsvg-convert | |
# xsltproc for xsltproc | |
# libxml2-utils for xmllint | |
# tidy for tidy | |
run: | | |
sudo apt-get -q -y update | |
sudo apt-get -q -y install librsvg2-bin xsltproc libxml2-utils \ | |
tidy fonts-open-sans | |
- name: make | |
run: make | |
- name: make check | |
run: make check |