Skip to content

Commit 0f9c58c

Browse files
committed
ci: #144 clear old style
1 parent a332fe1 commit 0f9c58c

File tree

1 file changed

+16
-19
lines changed

1 file changed

+16
-19
lines changed

.github/workflows/laravel-11.yml

+16-19
Original file line numberDiff line numberDiff line change
@@ -18,39 +18,36 @@ jobs:
1818
container:
1919
image: laravelfans/laravel:11-dev
2020
steps:
21-
- name: Checkout
22-
uses: actions/checkout@v2
23-
24-
- name: GitHub Environment Variables Action
25-
uses: FranzDiebold/[email protected]
26-
27-
- name: Prepare
21+
-
22+
name: Checkout
23+
uses: actions/checkout@v4
24+
-
25+
name: Prepare
2826
run: |
2927
composer install
3028
npm install
3129
npm run build
32-
33-
- name: PHPUnit
30+
-
31+
name: PHPUnit
3432
env:
3533
XDEBUG_MODE: coverage
36-
run: |
37-
php artisan test
38-
39-
- name: Upload test results to Codecov
34+
run: php artisan test
35+
-
36+
name: Upload test results to Codecov
4037
if: ${{ !cancelled() }}
4138
uses: codecov/test-results-action@v1
4239
with:
4340
token: ${{ secrets.CODECOV_TOKEN }}
44-
45-
- name: Upload coverage to Codecov
41+
-
42+
name: Upload coverage to Codecov
4643
uses: codecov/codecov-action@v4
4744
env:
4845
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
49-
50-
- name: Lint PHP
46+
-
47+
name: Lint PHP
5148
run: php artisan lint:code
52-
53-
- uses: hadolint/[email protected]
49+
-
50+
uses: hadolint/[email protected]
5451

5552
buildx:
5653
if: startsWith(github.ref, 'refs/tags/v')

0 commit comments

Comments
 (0)