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-latest, macos-latest, windows-latest]
os: [ubuntu-slim, ubuntu-latest, macos-latest, windows-latest]

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

- name: Start SSH
if: ${{ runner.os == 'Linux' }}
shell: bash
run: |
if ! pgrep sshd > /dev/null 2>&1; then
echo "Starting SSH..."
sudo mkdir -p /run/sshd
sudo /usr/sbin/sshd -D &
fi

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