diff --git a/.github/workflows/darwin.yaml b/.github/workflows/darwin.yaml new file mode 100644 index 00000000..75acf942 --- /dev/null +++ b/.github/workflows/darwin.yaml @@ -0,0 +1,20 @@ +name: Darwin +on: + push: + branches: [ master ] + pull_request: + branches: [ master ] +jobs: + build: + name: Unit Tests + runs-on: macos-latest + steps: + - name: Set up Go 1.x + uses: actions/setup-go@v2 + with: + go-version: ^1.13 + id: go + - name: Check out code into the Go module directory + uses: actions/checkout@v2 + - name: Run unit tests + run: go test -v -race ./pkg/... \ No newline at end of file