Skip to content

Commit 52c8344

Browse files
committed
Update CI
1 parent e467c4b commit 52c8344

File tree

2 files changed

+35
-25
lines changed

2 files changed

+35
-25
lines changed

.github/workflows/main.yml

+35-24
Original file line numberDiff line numberDiff line change
@@ -1,32 +1,43 @@
1-
name: Run Tests
2-
on: [push, pull_request]
1+
name: run-tests
2+
3+
on:
4+
- push
5+
- pull_request
36

47
jobs:
5-
run:
6-
runs-on: ubuntu-latest
8+
test:
9+
runs-on: ${{ matrix.os }}
10+
711
strategy:
8-
max-parallel: 15
912
fail-fast: false
1013
matrix:
11-
php-versions: ["7.3", "7.4", "8.0"]
12-
composer-flags: ["--prefer-lowest", "--prefer-stable"]
13-
env:
14-
- LARAVEL_VERSION='^7.0'
15-
- LARAVEL_VERSION='^8.0'
16-
name: Test on PHP ${{ matrix.php-versions }}, Laravel ${{ matrix.laravel-versions }} and ${{ matrix.composer-flags }}
14+
os: [ubuntu-latest]
15+
php: [8.4, 8.3, 8.2]
16+
laravel: [^12.0, ^11.0]
17+
dependency-version: [prefer-lowest, prefer-stable]
18+
include:
19+
- laravel: ^11.0
20+
testbench: ^9.0
21+
- laravel: ^12.0
22+
testbench: ^10.0
23+
24+
name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.dependency-version }} - ${{ matrix.os }}
25+
1726
steps:
18-
- name: Checkout
19-
uses: actions/checkout@master
20-
- name: Install PHP
21-
uses: shivammathur/setup-php@master
27+
- name: Checkout code
28+
uses: actions/checkout@v4
29+
30+
- name: Setup PHP
31+
uses: shivammathur/setup-php@v2
2232
with:
23-
php-version: ${{ matrix.php-versions }}
24-
- name: Install Dependencies
33+
php-version: ${{ matrix.php }}
34+
extensions: dom, curl, libxml, mbstring, zip, pcntl, pdo, sqlite, pdo_sqlite, bcmath, soap, intl, gd, exif, iconv, imagick
35+
coverage: none
36+
37+
- name: Install dependencies
2538
run: |
26-
${{ matrix.env }}
27-
composer config discard-changes true
28-
composer self-update
29-
composer require --dev "laravel/framework:${LARAVEL_VERSION}" --no-interaction --no-update
30-
composer update ${{ matrix.composer-flags }} --prefer-dist --no-suggest --no-interaction
31-
- name: Run PHPUnit
32-
run: php vendor/bin/phpunit
39+
composer require "laravel/framework:${{ matrix.laravel }}" "orchestra/testbench:${{ matrix.testbench }}" --no-interaction --no-update
40+
composer update --${{ matrix.dependency-version }} --prefer-dist --no-interaction
41+
42+
- name: Execute tests
43+
run: vendor/bin/phpunit

README.md

-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
[![Latest Version on Packagist](https://img.shields.io/packagist/v/imliam/laravel-env-set-command.svg)](https://packagist.org/packages/imliam/laravel-env-set-command)
44
[![Total Downloads](https://img.shields.io/packagist/dt/imliam/laravel-env-set-command.svg)](https://packagist.org/packages/imliam/laravel-env-set-command)
55
[![License](https://img.shields.io/github/license/imliam/laravel-env-set-command.svg)](LICENSE.md)
6-
[![CI Status](https://github.com/imliam/laravel-env-set-command/workflows/Run%20Tests/badge.svg)](https://github.com/imliam/laravel-env-set-command/actions)
76

87
Set a .env file variable from the command line.
98

0 commit comments

Comments
 (0)