changeset 22677:f9d1d2acb2c7 v8.2.1887

patch 8.2.1887: Github actions not optimally configured Commit: https://github.com/vim/vim/commit/15ab48f088842de512ca5f13aa39a4dc7cac8477 Author: Bram Moolenaar <Bram@vim.org> Date: Thu Oct 22 17:33:17 2020 +0200 patch 8.2.1887: Github actions not optimally configured Problem: Github actions not optimally configured. Solution: Run CI on any pushed branches. Set fail-fast. (Ozaki Kiichi, closes #7184)
author Bram Moolenaar <Bram@vim.org>
date Thu, 22 Oct 2020 17:45:05 +0200
parents 9330690b80c8
children 5890a367e796
files .github/workflows/ci-windows.yaml src/version.c
diffstat 2 files changed, 4 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- 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]
--- a/src/version.c
+++ b/src/version.c
@@ -751,6 +751,8 @@ static char *(features[]) =
 static int included_patches[] =
 {   /* Add new patch number below this line */
 /**/
+    1887,
+/**/
     1886,
 /**/
     1885,