commit: 331f4d4d585b9ac845da732aa3b8a5ae139418c4
Author: Ulrich Müller <ulm <AT> gentoo <DOT> org>
AuthorDate: Wed Oct 13 14:20:54 2021 +0000
Commit: Ulrich Müller <ulm <AT> gentoo <DOT> org>
CommitDate: Wed Oct 13 14:20:54 2021 +0000
URL: https://gitweb.gentoo.org/proj/devmanual.git/commit/?id=331f4d4d
.github/workflows/devmanual-ci.yml: Run apt-get update
As recommended in documentation.
Signed-off-by: Ulrich Müller <ulm <AT> gentoo.org>
.github/workflows/devmanual-ci.yml | 10 ++++++----
1 file changed, 6 insertions(+), 4 deletions(-)
diff --git a/.github/workflows/devmanual-ci.yml
b/.github/workflows/devmanual-ci.yml
index 7f32e80..9d8e11f 100644
--- a/.github/workflows/devmanual-ci.yml
+++ b/.github/workflows/devmanual-ci.yml
@@ -15,15 +15,17 @@ jobs:
build:
runs-on: ubuntu-latest # no gentoo :(
steps:
- - uses: actions/checkout@v2
+ - 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 install -y librsvg2-bin xsltproc libxml2-utils tidy
- fonts-open-sans
+ 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