Skip to content

Merge pull request #1715 from liblouis/dependabot/github_actions/acti… #19

Merge pull request #1715 from liblouis/dependabot/github_actions/acti…

Merge pull request #1715 from liblouis/dependabot/github_actions/acti… #19

Workflow file for this run

name: Test macro feature
on:
workflow_dispatch:
push:
branches: [ master ]
paths-ignore:
- README
- NEWS
permissions: # added using https://github.com/step-security/secure-workflows
contents: read
jobs:
build:
name: Test macro feature
runs-on: ubuntu-latest
steps:
- name: Harden Runner
uses: step-security/harden-runner@cb605e52c26070c328afc4562f0b4ada7618a84e # v2.10.4
with:
egress-policy: audit # TODO: change to 'egress-policy: block' after couple of runs
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: Install dependencies
run: sudo apt-get update -qq && sudo apt-get install -y libyaml-dev
- name: Autogen && configure
run: |
./autogen.sh
./configure --enable-macros
- name: Make
run: make
- name: Make check
run: make check
- name: Store the test log
if: ${{ always() }} # store the test log even if the tests failed
uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4.6.0
with:
name: test-suite-macro.log
path: tests/test-suite.log