From 7bce16737bdeec5ed16db2663d5e932c30a920cb Mon Sep 17 00:00:00 2001 From: Andrew Keesler Date: Tue, 27 Oct 2020 18:39:19 -0400 Subject: [PATCH] Get rid of WIP workflow See d5dd65c, 45189e3, 96c4661. I pushed to the wrong remote... Signed-off-by: Andrew Keesler --- .github/workflows/unit-tests.yml | 47 -------------------------------- 1 file changed, 47 deletions(-) delete mode 100644 .github/workflows/unit-tests.yml diff --git a/.github/workflows/unit-tests.yml b/.github/workflows/unit-tests.yml deleted file mode 100644 index d30519b2..00000000 --- a/.github/workflows/unit-tests.yml +++ /dev/null @@ -1,47 +0,0 @@ -name: unit-tests -on: workflow_dispatch -jobs: - macos-unit-tests: - name: macOS Unit Tests - runs-on: macos-latest - steps: - - name: Set up Go - uses: actions/setup-go@v2 - with: - go-version: ^1.15 - id: go - - name: Checkout - uses: actions/checkout@v2 - - name: Cache Dependencies - uses: actions/cache@v2 - with: - path: ~/go/pkg/mod - key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }} - restore-keys: | - ${{ runner.os }}-go- - - name: Build - run: go build -v ./... - - name: Test - run: go test -short -race -v ./... - windows-unit-tests: - name: Windows Unit Tests - runs-on: windows-latest - steps: - - name: Set up Go - uses: actions/setup-go@v2 - with: - go-version: ^1.15 - id: go - - name: Checkout - uses: actions/checkout@v2 - - name: Cache Dependencies - uses: actions/cache@v2 - with: - path: ~/go/pkg/mod - key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }} - restore-keys: | - ${{ runner.os }}-go- - - name: Build - run: go build -v ./... - - name: Test - run: go test -short -race -v ./...