Add a NEWS entry for the next release #11
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: 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@5c7944e73c4c2a096b17a9cb74d65b6c2bbafbde # v2.9.1 | |
with: | |
egress-policy: audit # TODO: change to 'egress-policy: block' after couple of runs | |
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 | |
- 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@0b2256b8c012f0828dc542b3febcab082c67f72b # v4.3.4 | |
with: | |
name: generate-display-names.log | |
path: extra/generate-display-names/generate.log |