aboutsummaryrefslogtreecommitdiff
blob: 9d8e11f904b8551fb1577fb858a9c3c61fc14330 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
# 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