test-ci-2 #5
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: build_and_unit_test | |
on: | |
push: | |
branches: [ test-ci ] | |
pull_request: | |
branches: [ master ] | |
types: [ opened, synchronize, reopened, edited, ready_for_review ] | |
jobs: | |
build_and_unit_test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Go | |
uses: actions/setup-go@v2 | |
with: | |
go-version: 1.17 | |
- name: set ssh | |
run: git config --global --add url."[email protected]:".insteadOf "https://github.com/" | |
- name: Set Environment | |
run: go get https://github.com/greenplum-db/gpbackup/ |