Skip to content

Commit 96551b7

Browse files
committed
fix: do not try to symlink unpublished versions
1 parent 71da90a commit 96551b7

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

.github/workflows/installation_test.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ jobs:
4646
matrix:
4747
config:
4848
- {instance: macos-13, arch: x86_64}
49-
- {instance: macos-latest, arch: arm64}
49+
- {instance: macos-15, arch: arm64}
5050
install_method: [binary, source]
5151
neovim_version: [stable, nightly, v0.9.0]
5252
runs-on: ${{ matrix.config.instance }}
@@ -68,13 +68,16 @@ jobs:
6868
- {instance: ubuntu-latest, arch: x86-64}
6969
- {instance: ubuntu-24.04-arm, arch: arm64}
7070
- {instance: macos-13, arch: x86_64}
71-
- {instance: macos-latest, arch: arm64}
71+
- {instance: macos-15, arch: arm64}
7272
neovim_version: [stable, nightly, v0.9.0]
7373
runs-on: ${{ matrix.config.instance }}
7474
steps:
7575
- uses: actions/checkout@v4
7676
- uses: rhysd/action-setup-vim@v1
7777
name: Install Neovim
78+
if: >
79+
${{ matrix.neovim_version == 'v0.9.0' &&
80+
matrix.config.arch != 'arm64' }}
7881
with:
7982
neovim: true
8083
version: ${{ matrix.neovim_version }}

0 commit comments

Comments
 (0)