diff --git a/.github/workflows/darwin.yaml b/.github/workflows/darwin.yaml index 75acf9424..9be5a98e8 100644 --- a/.github/workflows/darwin.yaml +++ b/.github/workflows/darwin.yaml @@ -1,9 +1,7 @@ name: Darwin on: - push: - branches: [ master ] - pull_request: - branches: [ master ] + pull_request: {} + push: {} jobs: build: name: Unit Tests @@ -17,4 +15,4 @@ jobs: - 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 + run: go test -v -race ./pkg/... diff --git a/.github/workflows/ubuntu.yaml b/.github/workflows/ubuntu.yaml index fa4ae2073..f90f73ab5 100644 --- a/.github/workflows/ubuntu.yaml +++ b/.github/workflows/ubuntu.yaml @@ -1,9 +1,7 @@ name: Linux Unit tests on: - push: - branches: [ master ] - pull_request: - branches: [ master ] + pull_request: {} + push: {} jobs: