From ece3a97a330d053d612bbac59130e64f37d6ddc3 Mon Sep 17 00:00:00 2001 From: Jan De Dobbeleer Date: Tue, 1 Feb 2022 14:38:25 +0100 Subject: [PATCH] chore(go): test all modules --- .github/workflows/code.yml | 2 +- docs/docs/contributing-started.mdx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/code.yml b/.github/workflows/code.yml index df0c1733..15b4c476 100644 --- a/.github/workflows/code.yml +++ b/.github/workflows/code.yml @@ -31,4 +31,4 @@ jobs: version: latest working-directory: src - name: Unit Tests - run: go test . -v + run: go test -v ./... diff --git a/docs/docs/contributing-started.mdx b/docs/docs/contributing-started.mdx index 87dcaac3..b4b13de2 100644 --- a/docs/docs/contributing-started.mdx +++ b/docs/docs/contributing-started.mdx @@ -38,7 +38,7 @@ The go source code can be found in the `src/` directory, make sure to change to ### Unit tests ```bash -go test -v +go test -v ./... ``` ### golangci-lint