feat: Github CI (#12)

* feat: Github CI

* add verbose to gcc

* reorder jobs

* add extra warnings and small fix
This commit is contained in:
2025-08-20 11:10:08 +02:00
committed by GitHub
parent 70c2f02b0b
commit bb82ae6458
3 changed files with 35 additions and 2 deletions
+1 -1
View File
@@ -68,7 +68,7 @@ bool is_number(char *value) {
return false;
}
unsigned long value_len = strlen(value);
int i;
unsigned int i;
for (i = 0; i < value_len; i++) {
if (!is_digit(value[i])) {
return false;