From 64978708847a74b249b97bab19df190f909b100b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D7=A0=CF=85=CE=B1=CE=B7=20=D7=A0=CF=85=CE=B1=CE=B7=D1=95?= =?UTF-8?q?=CF=83=CE=B7?= Date: Sat, 11 Nov 2023 09:56:53 -0800 Subject: [PATCH] Added go report card action --- .github/workflows/go.yml | 2 +- .github/workflows/reportcard.yml | 14 ++++++++++++++ 2 files changed, 15 insertions(+), 1 deletion(-) create mode 100644 .github/workflows/reportcard.yml diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index 4b1fc4d..7eb53bd 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -1,3 +1,4 @@ +--- name: Go on: @@ -7,7 +8,6 @@ on: branches: [ "main" ] jobs: - build: runs-on: ubuntu-latest steps: diff --git a/.github/workflows/reportcard.yml b/.github/workflows/reportcard.yml new file mode 100644 index 0000000..84f901c --- /dev/null +++ b/.github/workflows/reportcard.yml @@ -0,0 +1,14 @@ +--- +name: Go Report Card + +on: + push: + branches: [ "main" ] + +jobs: + action_goreportcard: + runs-on: ubuntu-latest + name: A job to run go report card + steps: + - name: Go Report Card + uses: creekorful/goreportcard-action@v1.0