diff options
Diffstat (limited to '.github/workflows/windows.yml')
-rw-r--r-- | .github/workflows/windows.yml | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index 759137b5..92d76d2c 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -1,6 +1,18 @@ name: Windows -on: [ push, pull_request ] +on: + push: + branches: + - master + - beta + - stable + tags-ignore: + - '**' + paths-ignore: + - '**.md' + pull_request: + paths-ignore: + - '**.md' jobs: golang: @@ -63,6 +75,7 @@ jobs: go test -v -race ./pkg/bst go test -v -race ./pkg/worker_watcher go test -v -race ./plugins/http/config + go test -v -race ./plugins/server go test -v -race ./tests/plugins/http go test -v -race ./tests/plugins/informer go test -v -race ./tests/plugins/reload |