Skip to content

Commit f2e7916

Browse files
author
Bishop Bettini
committed
fix: checkout needs to be first
1 parent a20096a commit f2e7916

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

.github/workflows/ci-2.x.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,9 @@ jobs:
4242
name: Laravel ${{ matrix.laravel }} on PHP ${{ matrix.php }} (${{ matrix.os }})
4343
runs-on: ${{ matrix.os }}-latest
4444
steps:
45+
- name: Checkout the code
46+
uses: actions/checkout@v2
47+
4548
- name: Install PHP and composer environment
4649
uses: shivammathur/setup-php@v2
4750
with:
@@ -51,9 +54,6 @@ jobs:
5154
- name: Create Laravel test app
5255
run: composer create-project laravel/laravel rollbar-test-app ${{ matrix.laravel }}
5356

54-
- name: Checkout the code
55-
uses: actions/checkout@v2
56-
5757
- name: Install that code using Composer rigged to look in the parent directory
5858
working-directory: rollbar-test-app
5959
run: |

.github/workflows/ci-4.x.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,9 @@ jobs:
4242
name: Laravel ${{ matrix.laravel }} on PHP ${{ matrix.php }} (${{ matrix.os }})
4343
runs-on: ${{ matrix.os }}-latest
4444
steps:
45+
- name: Checkout the code
46+
uses: actions/checkout@v2
47+
4548
- name: Install PHP and composer environment
4649
uses: shivammathur/setup-php@v2
4750
with:
@@ -51,9 +54,6 @@ jobs:
5154
- name: Create Laravel test app
5255
run: composer create-project laravel/laravel rollbar-test-app ${{ matrix.laravel }}
5356

54-
- name: Checkout the code
55-
uses: actions/checkout@v2
56-
5757
- name: Install that code using Composer rigged to look in the parent directory
5858
working-directory: rollbar-test-app
5959
run: |

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,9 @@ jobs:
4242
name: Laravel ${{ matrix.laravel }} on PHP ${{ matrix.php }} (${{ matrix.os }})
4343
runs-on: ${{ matrix.os }}-latest
4444
steps:
45+
- name: Checkout the code
46+
uses: actions/checkout@v2
47+
4548
- name: Install PHP and composer environment
4649
uses: shivammathur/setup-php@v2
4750
with:
@@ -51,9 +54,6 @@ jobs:
5154
- name: Create Laravel test app
5255
run: composer create-project laravel/laravel rollbar-test-app ${{ matrix.laravel }}
5356

54-
- name: Checkout the code
55-
uses: actions/checkout@v2
56-
5757
- name: Install that code using Composer rigged to look in the parent directory
5858
working-directory: rollbar-test-app
5959
run: |

0 commit comments

Comments
 (0)