Skip to content

mlfi_eoh: emit dkim=permerror for malformed DKIM-Signature (fixes #194) #149

mlfi_eoh: emit dkim=permerror for malformed DKIM-Signature (fixes #194)

mlfi_eoh: emit dkim=permerror for malformed DKIM-Signature (fixes #194) #149

Workflow file for this run

name: CI
on:
push:
branches: [ develop ]
paths-ignore:
- '**.md'
- 'doc/**'
- 'contrib/**'
pull_request:
branches: [ develop ]
paths-ignore:
- '**.md'
- 'doc/**'
- 'contrib/**'
workflow_dispatch:
jobs:
build-test-linux:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install dependencies
run: |
sudo apt-get update -q
sudo apt-get install -y \
autoconf automake libtool pkg-config \
libssl-dev libmilter-dev \
lua5.4 liblua5.4-dev
- name: Bootstrap build system
run: autoreconf -fvi
- name: Configure
run: |
./configure --enable-lua \
CFLAGS='-g -O2 -Wno-pointer-sign'
- name: Build
run: make -j$(nproc)
- name: Test
run: make check