From f9f465073fca3115a74c41aa8ea46d16a2a9f984 Mon Sep 17 00:00:00 2001 From: Madhu Rajanna Date: Mon, 15 Nov 2021 12:21:48 +0530 Subject: [PATCH] ci: add github action to build retest added basic github action for retest building. Signed-off-by: Madhu Rajanna --- .github/workflows/test-retest-action.yaml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .github/workflows/test-retest-action.yaml diff --git a/.github/workflows/test-retest-action.yaml b/.github/workflows/test-retest-action.yaml new file mode 100644 index 000000000..3bf15c755 --- /dev/null +++ b/.github/workflows/test-retest-action.yaml @@ -0,0 +1,23 @@ +--- +name: test-retest-action +# yamllint disable-line rule:truthy +on: + pull_request: + branches: [main] + +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + + - name: Set up Go + uses: actions/setup-go@v2 + with: + go-version: 1.16 + + - name: Enter retest directory + run: cd actions/retest + + - name: Build + run: go build -v ./...