We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f41efd8 commit 757b733Copy full SHA for 757b733
.github/workflows/tests.yml
@@ -42,6 +42,18 @@ jobs:
42
tools: composer:v2
43
coverage: none
44
45
+ - uses: actions/checkout@v4
46
+ name: Checkout private tools
47
+ with:
48
+ repository: laravel/nova
49
+ token: ${{ secrets.MY_GITHUB_TOKEN }}
50
+ path: nova
51
+ ref: "main"
52
+
53
+ - name: Configure repository configuration
54
+ run: |
55
+ composer config repositories.nova '{"type": "path", "url": "nova"}' --file composer.json
56
57
- name: Install dependencies
58
run: |
59
composer update --prefer-dist --no-interaction --no-progress --with="illuminate/contracts:^${{ matrix.laravel }}"
0 commit comments