Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [ubuntu-slim, ubuntu-latest, macos-latest, windows-latest, macos-26, windows-2025-vs2026]
os: [ubuntu-slim, ubuntu-latest, macos-latest, windows-latest, windows-11-arm]

steps:
- uses: actions/checkout@v6
Expand Down
12 changes: 12 additions & 0 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,12 @@ runs:
REPO_NWO: ${{ github.repository }}
GH_TOKEN: ${{ github.token }}

- name: Install SSH
if: ${{ runner.os == 'Windows' && runner.arch == 'ARM64' }}
shell: pwsh
run: |
dism /online /Add-Capability /CapabilityName:OpenSSH.Server~~~~0.0.1.0

- name: Start SSH
if: ${{ runner.os == 'Linux' }}
shell: bash
Expand All @@ -44,6 +50,12 @@ runs:
sudo /usr/sbin/sshd -D &
fi

- name: Start SSH
if: ${{ runner.os == 'Windows' && runner.arch == 'ARM64' }}
shell: pwsh
run: |
sc start sshd

- name: Add SSH keys
shell: bash
run: |
Expand Down
Loading