We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 33f1a6b commit 9a27a2dCopy full SHA for 9a27a2d
2 files changed
.github/workflows/ci.yaml
@@ -34,4 +34,4 @@ jobs:
34
just sysinfo
35
- name: Run Go Test
36
run: |
37
- just init tidy lint test
+ just init tidy lint tests
Justfile
@@ -15,9 +15,15 @@ tidy:
15
16
# run tests across source tree
17
[group('build')]
18
-test:
+tests:
19
go test -v -race -count=1 ./...
20
21
+# run specific unit test
22
+[group('build')]
23
+[no-cd]
24
+test unit:
25
+ go test -v -count=1 -race -run {{unit}} 2>/dev/null
26
+
27
# ensure copywrite headers present on source files
28
[group('lint')]
29
copywrite:
0 commit comments