diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 0000000..5cb31d6 --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,29 @@ +name: API CI + +on: + push: + branches: + - master + - kv/ci + pull_request: + branches: + - master + +jobs: + + run-test: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v2 + + - name: setup go + uses: actions/setup-go@v1 + with: + go-version: '1.13' + + - name: run test + working-directory: ./ + run: | + go test ./... +