ci: add github action to build retest

added basic github action for
retest building.

Signed-off-by: Madhu Rajanna <madhupr007@gmail.com>
This commit is contained in:
Madhu Rajanna 2021-11-15 12:21:48 +05:30 committed by mergify[bot]
parent 5a53f53166
commit f9f465073f

View File

@ -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 ./...