We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b4b16a4 commit ba5501cCopy full SHA for ba5501c
.github/workflows/tests.yml
@@ -74,6 +74,13 @@ jobs:
74
tools: composer:v2
75
coverage: none
76
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
+
84
- name: Install dependencies
85
run: |
86
composer update --prefer-dist --no-interaction --no-progress --with="illuminate/contracts:^${{ matrix.laravel }}"
0 commit comments