lib: Fix a typo in a comment #1
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
name: CI | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
# Allows you to run this workflow manually from the Actions tab: | |
workflow_dispatch: | |
jobs: | |
# This workflow contains a single job called "job-1": | |
job-1: | |
# "ubuntu-latest" == ubuntu-20.04 ('focal'): | |
runs-on: ubuntu-latest | |
steps: | |
# Checks-out repository under $GITHUB_WORKSPACE: | |
- uses: actions/checkout@v3 | |
- name: apt-get update | |
run: sudo apt-get update | |
- name: apt-get install | |
run: sudo apt-get install -y | |
guile-2.2-dev | |
libgtk2.0-dev | |
libgtkextra-dev | |
libstroke0-dev | |
libgettextpo-dev | |
autopoint | |
flex | |
bison | |
groff | |
texinfo | |
texlive-base | |
texlive-plain-generic | |
texlive-latex-base | |
texlive-fonts-recommended | |
imagemagick | |
- name: configure | |
run: | | |
./autogen.sh | |
./configure --disable-update-xdg-database CFLAGS='-DSCM_DEBUG_TYPING_STRICTNESS=2' | |
- name: make distcheck | |
run: make -sj1 distcheck |