From 5d87ef7ffba2eeb5000b2e5b16046b27a25cb1c0 Mon Sep 17 00:00:00 2001 From: Rich Young Date: Wed, 12 Apr 2023 10:38:25 +0100 Subject: [PATCH] Add static and tests --- .github/workflows/pull-request.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .github/workflows/pull-request.yml diff --git a/.github/workflows/pull-request.yml b/.github/workflows/pull-request.yml new file mode 100644 index 0000000..02c22db --- /dev/null +++ b/.github/workflows/pull-request.yml @@ -0,0 +1,15 @@ +name: Pull Request + +on: + pull_request: + branches: [main, develop] + merge_group: {} + +jobs: + call-golang-vet-staticcheck: + name: Go Vet and Staticcheck + uses: RedMapleTech/actions/.github/workflows/golang-vet-staticcheck.yml@main + + call-golang-test: + name: Go Tests + uses: RedMapleTech/actions/.github/workflows/golang-test.yml@main