fix typo in aide.conf.5 #26
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: Aide CI Linux | |
on: [push] | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest] | |
compiler: [gcc, clang] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install dependencies | |
run: sudo apt install autoconf-archive bison flex nettle-dev libpcre2-dev zlib1g-dev check | |
- name: autoconf | |
run: ./autogen.sh | |
- name: configure | |
run: ./configure | |
env: | |
CC: ${{ matrix.compiler }} | |
- name: make | |
run: make | |
- name: make check | |
run: make check | |
- name: make distcheck | |
run: make distcheck |