diff options
author | Lorenz Kästle <lorenz.kaestle@netways.de> | 2023-04-28 11:01:17 +0200 |
---|---|---|
committer | Lorenz Kästle <lorenz.kaestle@netways.de> | 2023-04-28 11:01:17 +0200 |
commit | 6b2f64a1a094d66e59090f52ae34be407c79a527 (patch) | |
tree | ad8dc9eeea06af65ea10756a02cd2abb17bee66e | |
parent | 34c4d13edd8ece1e928c578974218c10d25600c4 (diff) | |
download | monitoring-plugins-6b2f64a.tar.gz |
Be pedantic about c90
-rw-r--r-- | .github/workflows/test.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 11823aee..0d06a0d0 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml | |||
@@ -15,8 +15,8 @@ jobs: | |||
15 | run: sudo apt-get install gettext | 15 | run: sudo apt-get install gettext |
16 | - name: setup | 16 | - name: setup |
17 | run: ./tools/setup | 17 | run: ./tools/setup |
18 | - name: CFLAGS="-Wall -Wextra -std=c90" configure | 18 | - name: configure |
19 | run: ./configure | 19 | run: CFLAGS="-Wall -Wextra -Werror=pedantic -std=c90" ./configure |
20 | - name: make | 20 | - name: make |
21 | run: make | 21 | run: make |
22 | 22 | ||