Răsfoiți Sursa

Update github checkout actions to v3. Update Vim version in MS-Windows. Add Vim 9.0 to the CI tests

Yegappan Lakshmanan 3 ani în urmă
părinte
comite
7009e9d006
1 a modificat fișierele cu 6 adăugiri și 6 ștergeri
  1. 6 6
      .github/workflows/unittests.yml

+ 6 - 6
.github/workflows/unittests.yml

@@ -8,13 +8,13 @@ jobs:
       matrix:
       matrix:
         vim:
         vim:
           - nightly
           - nightly
+          - v9.0.0000
           - v8.2.0000
           - v8.2.0000
-          - v8.1.0000
           - v8.0.0000
           - v8.0.0000
           - v7.4
           - v7.4
     steps:
     steps:
       - name: Checkout Code
       - name: Checkout Code
-        uses: actions/checkout@v2
+        uses: actions/checkout@v3
       - name: Setup Vim
       - name: Setup Vim
         uses: rhysd/action-setup-vim@v1
         uses: rhysd/action-setup-vim@v1
         id: vim
         id: vim
@@ -31,16 +31,16 @@ jobs:
     name: windows
     name: windows
     runs-on: windows-latest
     runs-on: windows-latest
     steps:
     steps:
-      - uses: actions/checkout@v2
+      - uses: actions/checkout@v3
       - name: Download Vim
       - name: Download Vim
         shell: PowerShell
         shell: PowerShell
-        run: Invoke-WebRequest -Uri https://github.com/vim/vim-win32-installer/releases/download/v8.2.2488/gvim_8.2.2488_x64.zip -OutFile vim.zip
+        run: Invoke-WebRequest -Uri https://github.com/vim/vim-win32-installer/releases/download/v9.0.0769/gvim_9.0.0769_x64.zip -OutFile vim.zip
       - name: Extract vim
       - name: Extract vim
         shell: PowerShell
         shell: PowerShell
         run: Expand-Archive -Path vim.zip -DestinationPath $env:USERPROFILE
         run: Expand-Archive -Path vim.zip -DestinationPath $env:USERPROFILE
       - name: Run Tests
       - name: Run Tests
         run: |
         run: |
-          $env:PATH = $env:PATH + ';' + $env:USERPROFILE + '\vim\vim82'
+          $env:PATH = $env:PATH + ';' + $env:USERPROFILE + '\vim\vim90'
           Get-ComputerInfo -Property Windows*
           Get-ComputerInfo -Property Windows*
           vim --version
           vim --version
           cd test
           cd test
@@ -50,7 +50,7 @@ jobs:
     runs-on: ubuntu-latest
     runs-on: ubuntu-latest
     steps:
     steps:
       - name: Checkout Code
       - name: Checkout Code
-        uses: actions/checkout@v2
+        uses: actions/checkout@v3
       - name: Setup Neovim
       - name: Setup Neovim
         uses: rhysd/action-setup-vim@v1
         uses: rhysd/action-setup-vim@v1
         id: vim
         id: vim