diff options
author | Valery Piashchynski <[email protected]> | 2021-06-09 12:06:10 +0300 |
---|---|---|
committer | GitHub <[email protected]> | 2021-06-09 12:06:10 +0300 |
commit | a723cedba199a1c50dca05630b53139ee456ace8 (patch) | |
tree | c41ab92d6a02b2669f24702cb44dc54b3e241442 /.github/workflows/windows.yml | |
parent | 4f3e16892479db4bd8280a46987f3105e46e5c96 (diff) | |
parent | ffad3119505aab02f0b7d5ba1cc29e6e91be5d11 (diff) |
#713 feat(server): path scan for a potential file path
#713 feat(server): path scan for a potential file path
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 |