aboutsummaryrefslogtreecommitdiffhomepage
path: root/.github/workflows
diff options
context:
space:
mode:
authorVincent Pelletier <[email protected]>2022-11-05 00:42:55 +0000
committerVincent Pelletier <[email protected]>2022-11-05 05:04:37 +0000
commitbfbbe922add8f6648cac04f1740b2cfb04092efd (patch)
tree8e38b16894e1474f109284c91fe6f137583001b9 /.github/workflows
parente334edb4e5c928c1a6242f97072a0ed5fce5aec2 (diff)
downloadcartreader-bfbbe922add8f6648cac04f1740b2cfb04092efd.tar.gz
cartreader-bfbbe922add8f6648cac04f1740b2cfb04092efd.zip
Github workflow: Enable all compiler warnings
So regressions have a chance of being spotted. Sadly, there does not seem to be a flag to enable -Werror, so the CI will succeed even with warnings.
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/ci.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index cb46d1a..ac92ff4 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -47,4 +47,4 @@ jobs:
cd Cart_Reader/
# Select hardware version by uncommenting it (using regular expression)
sed -i 's/^\/\/[\t ]*#define ${{ matrix.hwVersion }}/#define ${{ matrix.hwVersion }}/g' Cart_Reader.ino
- arduino-cli compile --fqbn arduino:avr:mega
+ arduino-cli compile --fqbn arduino:avr:mega --warnings all