diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml deleted file mode 100644 index 9bfc360b..00000000 --- a/.github/workflows/ci.yml +++ /dev/null @@ -1,19 +0,0 @@ -name: tests -on: [push, pull_request] - -jobs: - ci: - strategy: - matrix: - go-version: [1.12.x, 1.13.x] - platform: [ubuntu-latest] - name: CI - runs-on: ${{ matrix.platform }} - steps: - - uses: actions/checkout@v1 - - uses: actions/setup-go@v1 - with: - go-version: ${{ matrix.go-version }} - - run: go fmt ./... - - run: go test -race ./... - - run: go test -v ./...