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