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 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49
|
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@20cf305ff2072d973412fa9b1e3a4f227bda3c76 # v2.14.0
with:
egress-policy: audit # TODO: change to 'egress-policy: block' after couple of runs
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
- name: Install dependencies
run: sudo apt-get update -qq && sudo apt-get install -y libyaml-dev texinfo texlive golang-1.23
- 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@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0
with:
name: generate-display-names.log
path: extra/generate-display-names/generate.log
|