libopendkim: accept UTF-8 in header bodies and DKIM-Signature i= values (RFC 8616) #155
Workflow file for this run
This file contains hidden or 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: 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 |