Skip to content

Commit

Permalink
Install dependencies in workflows
Browse files Browse the repository at this point in the history
Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
  • Loading branch information
come-nc committed Jun 8, 2023
1 parent 3302797 commit b3b17cf
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/test-cli.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,5 +30,8 @@ jobs:
php-version: ${{ matrix.php-versions }}
coverage: none

- name: Install dependencies
run: composer i

- name: test-cli
run: make test-cli
3 changes: 3 additions & 0 deletions .github/workflows/test-master.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,9 @@ jobs:
coverage: none
ini-file: development

- name: Install dependencies
run: composer i

- name: test-master
run: make test-master

Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/test-stable.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,9 @@ jobs:
coverage: none
ini-file: development

- name: Install dependencies
run: composer i

- name: test-stable${{ matrix.nextcloud-versions }}
run: make test-stable${{ matrix.nextcloud-versions }}

Expand Down

0 comments on commit b3b17cf

Please sign in to comment.