Commit c51ffa2
chore/run only tests where changes where (#10)
* fix: resolve Go test failures in 2019 and 2024 (#9)
* fix: resolve Go test failures in 2019 and 2024
- Remove unused 'errors' import in 2024/golang/cmd/04.go
- Add filepath parameter to readCommands() function in 2019/go/cmd/15
to match test expectations
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude <noreply@anthropic.com>
* fix: replace deprecated drain_filter with stable alternative in 2021/_4
- Remove unstable feature flag #![feature(drain_filter)]
- Replace drain_filter with iter_mut + retain pattern
- All Rust tests in 2021 now compile and pass
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude <noreply@anthropic.com>
---------
Co-authored-by: Claude <noreply@anthropic.com>
Signed-off-by: markkovari <kovarimarkofficial@gmail.com>
* docs: add README rocket
* fix: prevent empty matrix values when no projects change
When only non-code files (like README.md) change, the change detection
was outputting [""] instead of []. This caused jobs to run with empty
matrix values, leading to failures:
- cargo test failing with "could not find Cargo.toml"
- dotnet restore failing with "no project or solution file"
Now properly outputs [] when no projects are detected, preventing
jobs from running with empty matrix values.
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude <noreply@anthropic.com>
---------
Signed-off-by: markkovari <kovarimarkofficial@gmail.com>
Co-authored-by: Claude <noreply@anthropic.com>1 parent e9e2d96 commit c51ffa2
2 files changed
+96
-21
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
10 | 10 | | |
11 | 11 | | |
12 | 12 | | |
| 13 | + | |
| 14 | + | |
| 15 | + | |
| 16 | + | |
| 17 | + | |
| 18 | + | |
| 19 | + | |
| 20 | + | |
| 21 | + | |
| 22 | + | |
| 23 | + | |
| 24 | + | |
| 25 | + | |
| 26 | + | |
| 27 | + | |
| 28 | + | |
| 29 | + | |
| 30 | + | |
| 31 | + | |
| 32 | + | |
| 33 | + | |
| 34 | + | |
| 35 | + | |
| 36 | + | |
| 37 | + | |
| 38 | + | |
| 39 | + | |
| 40 | + | |
| 41 | + | |
| 42 | + | |
| 43 | + | |
| 44 | + | |
| 45 | + | |
| 46 | + | |
| 47 | + | |
| 48 | + | |
| 49 | + | |
| 50 | + | |
| 51 | + | |
| 52 | + | |
| 53 | + | |
| 54 | + | |
| 55 | + | |
| 56 | + | |
| 57 | + | |
| 58 | + | |
| 59 | + | |
| 60 | + | |
| 61 | + | |
| 62 | + | |
| 63 | + | |
| 64 | + | |
| 65 | + | |
| 66 | + | |
| 67 | + | |
| 68 | + | |
| 69 | + | |
| 70 | + | |
| 71 | + | |
| 72 | + | |
| 73 | + | |
| 74 | + | |
| 75 | + | |
| 76 | + | |
| 77 | + | |
| 78 | + | |
| 79 | + | |
| 80 | + | |
| 81 | + | |
| 82 | + | |
| 83 | + | |
| 84 | + | |
| 85 | + | |
| 86 | + | |
| 87 | + | |
| 88 | + | |
| 89 | + | |
| 90 | + | |
| 91 | + | |
| 92 | + | |
| 93 | + | |
| 94 | + | |
| 95 | + | |
| 96 | + | |
| 97 | + | |
| 98 | + | |
13 | 99 | | |
| 100 | + | |
| 101 | + | |
14 | 102 | | |
15 | 103 | | |
16 | 104 | | |
17 | 105 | | |
18 | 106 | | |
19 | | - | |
20 | | - | |
21 | | - | |
22 | | - | |
23 | | - | |
24 | | - | |
25 | | - | |
26 | | - | |
27 | | - | |
28 | | - | |
29 | | - | |
30 | | - | |
31 | | - | |
| 107 | + | |
32 | 108 | | |
33 | 109 | | |
34 | 110 | | |
| |||
53 | 129 | | |
54 | 130 | | |
55 | 131 | | |
| 132 | + | |
| 133 | + | |
56 | 134 | | |
57 | 135 | | |
58 | 136 | | |
59 | 137 | | |
60 | 138 | | |
61 | | - | |
62 | | - | |
63 | | - | |
64 | | - | |
65 | | - | |
| 139 | + | |
66 | 140 | | |
67 | 141 | | |
68 | 142 | | |
| |||
87 | 161 | | |
88 | 162 | | |
89 | 163 | | |
| 164 | + | |
| 165 | + | |
90 | 166 | | |
91 | 167 | | |
92 | 168 | | |
93 | 169 | | |
94 | 170 | | |
95 | | - | |
96 | | - | |
97 | | - | |
| 171 | + | |
98 | 172 | | |
99 | 173 | | |
100 | 174 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1 | 1 | | |
2 | 2 | | |
| 3 | + | |
0 commit comments