Skip to content

Update TODO

Update TODO #19

Workflow file for this run

name: Run the metadata test
on:
workflow_dispatch:
push:
branches: [ master ]
paths:
- 'tables/*'
- 'liblouis/metadata.c'
- 'extra/generate-display-names/*'
pull_request:
branches: [ master ]
paths:
- 'tables/*'
- 'liblouis/metadata.c'
- 'extra/generate-display-names/*'
permissions: # added using https://github.com/step-security/secure-workflows
contents: read
jobs:
metadata-test:
name: Build and check the metadta
runs-on: ubuntu-latest
steps:
- name: Harden Runner
uses: step-security/harden-runner@91182cccc01eb5e619899d80e4e971d6181294a7 # v2.10.1
with:
egress-policy: audit # TODO: change to 'egress-policy: block' after couple of runs
- uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
- name: Install dependencies
run: sudo apt-get update -qq && sudo apt-get install -y libyaml-dev texinfo texlive golang
- name: autogen && configure
run: |
./autogen.sh
./configure --enable-ucs4
- name: Build
run: make
- name: Run the metadata test
run: make -C extra/generate-display-names
- name: Store the log
if: ${{ failure() }}
uses: actions/upload-artifact@50769540e7f4bd5e21e526ee35c689e35e0d6874 # v4.4.0
with:
name: generate-display-names.log
path: extra/generate-display-names/generate.log