For the continuous integration in Github Actions, convert
all compiler warnings to errors.
Signed-off-by: Tom Hromatka <tom.hromatka@oracle.com>
shell: bash
- run: ./bootstrap.sh
shell: bash
- - run: CFLAGS="$CFLAGS -g -O0" ./configure --sysconfdir=/etc --localstatedir=/var --enable-code-coverage --enable-opaque-hierarchy="name=systemd"
+ - run: CFLAGS="$CFLAGS -g -O0 -Werror" ./configure --sysconfdir=/etc --localstatedir=/var --enable-code-coverage --enable-opaque-hierarchy="name=systemd"
shell: bash
- run: make
shell: bash