summaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2020-10-22 17:33:17 +0200
committerBram Moolenaar <Bram@vim.org>2020-10-22 17:33:17 +0200
commit15ab48f088842de512ca5f13aa39a4dc7cac8477 (patch)
tree76c4bac703563cdfe3767a20ac96264d694791b7 /.github
parent371806e1642bbe17792f1e0fc7abe2ae13794635 (diff)
patch 8.2.1887: Github actions not optimally configuredv8.2.1887
Problem: Github actions not optimally configured. Solution: Run CI on any pushed branches. Set fail-fast. (Ozaki Kiichi, closes #7184)
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/ci-windows.yaml3
1 files changed, 2 insertions, 1 deletions
diff --git a/.github/workflows/ci-windows.yaml b/.github/workflows/ci-windows.yaml
index 917783019d..7db551fdcb 100644
--- a/.github/workflows/ci-windows.yaml
+++ b/.github/workflows/ci-windows.yaml
@@ -3,7 +3,7 @@ name: GitHub CI
on:
push:
branches:
- - '*'
+ - '**'
pull_request:
env:
@@ -39,6 +39,7 @@ jobs:
runs-on: windows-latest
strategy:
+ fail-fast: false
matrix:
toolchain: [msvc, mingw]
arch: [x64, x86]