Skip to content

Commit ba5501c

Browse files
committed
ci: setup SSH keys for php 8.1 tests too
1 parent b4b16a4 commit ba5501c

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

.github/workflows/tests.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,13 @@ jobs:
7474
tools: composer:v2
7575
coverage: none
7676

77+
- name: Setup SSH Keys
78+
run: |
79+
mkdir -p ~/.ssh
80+
echo "${{ secrets.MCP_DEPLOY_KEY }}" > ~/.ssh/id_rsa
81+
chmod 600 ~/.ssh/id_rsa
82+
ssh-keyscan github.com >> ~/.ssh/known_hosts
83+
7784
- name: Install dependencies
7885
run: |
7986
composer update --prefer-dist --no-interaction --no-progress --with="illuminate/contracts:^${{ matrix.laravel }}"

0 commit comments

Comments
 (0)