From 458473299dc0340fc386f9a1d9a1fb0cc8240a2c Mon Sep 17 00:00:00 2001 From: kevkevin Date: Wed, 6 Dec 2023 15:17:22 -0600 Subject: [PATCH] ci: added go tests into our test yml file --- .github/workflows/prjob_tests.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/workflows/prjob_tests.yml b/.github/workflows/prjob_tests.yml index db7bb1c6c..20aec3208 100644 --- a/.github/workflows/prjob_tests.yml +++ b/.github/workflows/prjob_tests.yml @@ -32,3 +32,11 @@ jobs: - name: Tests run: NODE_OPTIONS="--max_old_space_size=8192" yarn --cwd ./frontend/app run test-jest + test-go: + name: Go + runs-on: + - ubuntu-latest + steps: + - uses: actions/checkout@v2 + - name: Install modules + run: go test ./config ./auth ./db ./handlers ./routes ./utils