summaryrefslogtreecommitdiff
path: root/.github/workflows/windows.yml
diff options
context:
space:
mode:
authorNobuyoshi Nakada <nobu@ruby-lang.org>2021-10-29 00:02:07 +0900
committerNobuyoshi Nakada <nobu@ruby-lang.org>2021-10-29 00:22:26 +0900
commit0a9cbe8562d9a58ec129b34a5bfda20cee3283df (patch)
tree7235d577a39ce11a7f28b71374c4648e471db44a /.github/workflows/windows.yml
parentd51ba1e1be3ecbe5a02e4463f151e178de1c2a6e (diff)
Skip tests if only document files changed
Diffstat (limited to '.github/workflows/windows.yml')
-rw-r--r--.github/workflows/windows.yml13
1 files changed, 12 insertions, 1 deletions
diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml
index 66b2992049..919911b89e 100644
--- a/.github/workflows/windows.yml
+++ b/.github/workflows/windows.yml
@@ -1,5 +1,16 @@
name: Windows
-on: [push, pull_request]
+on:
+ push:
+ paths-ignore:
+ - 'doc/**'
+ - '**.md'
+ - '**.rdoc'
+ pull_request:
+ paths-ignore:
+ - 'doc/**'
+ - '**.md'
+ - '**.rdoc'
+
jobs:
make:
strategy: