We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0b31432 commit 4c24e72Copy full SHA for 4c24e72
.github/workflows/build.yaml
@@ -63,5 +63,7 @@ jobs:
63
64
- name: Output test logs on failure
65
if: failure()
66
- run: tail tests/*.log
+ run: |
67
+ tail tests/*.log
68
+ tail tests/tmp/*.out.txt
69
src/yaml.c
@@ -28,6 +28,7 @@ asdf_yaml_event_type_t asdf_yaml_event_type(const asdf_event_t *event) {
28
29
enum fy_event_type type = event->payload.yaml->type;
30
if (type < 0 || type >= (int)(sizeof(FYET_TO_ASDF_EVENT) / sizeof(FYET_TO_ASDF_EVENT[0]))) {
31
+ fprintf(stderr, "error: invalid fy_event_type: %d\n", type);
32
abort();
33
}
34
return FYET_TO_ASDF_EVENT[type];
0 commit comments