Skip to content

ci: pinact run -u

ci: pinact run -u #6

Workflow file for this run

name: Github CI
on: [push, pull_request]
jobs:
linux:
runs-on: ubuntu-latest
timeout-minutes: 60
strategy:
fail-fast: false
matrix:
CFLAGS:
-
- -O2 -g -fsanitize=address,undefined
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
fetch-depth: 1
# check
- run: sudo apt-get install wamerican txt2tags
- run: autoreconf -fi
# --enable-check --enable-cxxmph
- run: ./configure CFLAGS="${{ matrix.CFLAGS }}"
- run: make
- run: make check || (cat tests/test-suite.log; false)
- if: matrix.CFLAGS == ''
run: make distcheck || (cat tests/test-suite.log; false)