2 Commits

Author SHA1 Message Date
8c130a40d7 test(container): correct color
All checks were successful
Zig Project Action / Lint, Spell-check and test zig project (push) Successful in 1m15s
2025-02-25 18:46:06 +01:00
9a3bc3dbf7 fix(lint): exclude zon files located in src/test 2025-02-25 18:45:13 +01:00
2 changed files with 2 additions and 2 deletions

View File

@@ -18,7 +18,7 @@ jobs:
with: with:
version: master version: master
- name: Lint check - name: Lint check
run: zig fmt --check . run: zig fmt --check --exclude src/test .
- name: Spell checking - name: Spell checking
uses: crate-ci/typos@v1.25.0 uses: crate-ci/typos@v1.25.0
with: with:

View File

@@ -217,7 +217,7 @@ pub const Border = packed struct {
var container: Container(event.SystemEvent) = try .init(std.testing.allocator, .{ var container: Container(event.SystemEvent) = try .init(std.testing.allocator, .{
.border = .{ .border = .{
.color = .blue, .color = .green,
.sides = .horizontal, .sides = .horizontal,
}, },
}, .{}); }, .{});