m_mu: Select addresses without name #70
Workflow file for this run
This file contains 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: buildtest | |
on: [push] | |
jobs: | |
buildandtest: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- run: sudo apt install libauthen-sasl-perl libnet-ldap-perl libpalm-perl abook maildir-utils | |
- run: ./configure | |
- run: make | |
- run: make test | |
- uses: actions/upload-artifact@v4 | |
if: failure() | |
with: | |
name: testsuite | |
path: | | |
tests/testsuite.dir | |
tests/testsuite.log |