Skip to content

Commit

Permalink
Update GitHub Actions workflow to run tests on Ubuntu latest with sim…
Browse files Browse the repository at this point in the history
…plified dependencies.
  • Loading branch information
murdercode committed Mar 1, 2024
1 parent 8fd5d06 commit 2a9ae28
Showing 1 changed file with 4 additions and 32 deletions.
36 changes: 4 additions & 32 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,24 +11,16 @@ on:

jobs:
test:
runs-on: ${{ matrix.os }}
runs-on: ubuntu-latest
timeout-minutes: 5
strategy:
fail-fast: true
matrix:
os: [ ubuntu-latest ]
php: [ 8.3, 8.2, 8.1 ]
laravel: [ 11.*, 10.* ]
stability: [ prefer-stable ]
include:
- laravel: [ 10.*, 11.* ]
testbench: 8.*
carbon: ^2.63
exclude:
- php: 8.1
laravel: 11.*

name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }} - ${{ matrix.os }}
name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }}

steps:
- name: Checkout code
Expand All @@ -38,7 +30,7 @@ jobs:
uses: actions/cache@v1
with:
path: ~/.composer/cache/files
key: dependencies-php-${{ matrix.php }}-L${{ matrix.laravel }}-${{ matrix.dependency-version }}-composer-${{ hashFiles('composer.json') }}
key: dependencies-php-${{ matrix.php }}-L${{ matrix.laravel }}-composer-${{ hashFiles('composer.json') }}

- name: Setup PHP
uses: shivammathur/setup-php@v2
Expand All @@ -47,30 +39,10 @@ jobs:
extensions: dom, curl, libxml, mbstring, zip, pcntl, pdo, sqlite, pdo_sqlite, bcmath, soap, intl, gd, exif, iconv, imagick, fileinfo
coverage: none

- name: Setup problem matchers
run: |
echo "::add-matcher::${{ runner.tool_cache }}/php.json"
echo "::add-matcher::${{ runner.tool_cache }}/phpunit.json"
- name: Install dependencies
run: |
composer require "laravel/framework:${{ matrix.laravel }}" "orchestra/testbench:${{ matrix.testbench }}" "nesbot/carbon:${{ matrix.carbon }}" --no-interaction --no-update
composer require "laravel/framework:${{ matrix.laravel }}" --no-interaction --no-update
composer update --${{ matrix.stability }} --prefer-dist --no-interaction
- name: List Installed Dependencies
run: composer show -D

# - name: Setup Code Climate
# uses: amancevice/setup-code-climate@v1
# with:
# cc_test_reporter_id: ${{ secrets.CC_TEST_REPORTER_ID }}

# - name: Install Code Climate Test Reporter
# run: cc-test-reporter before-build

- name: Execute tests
run: vendor/bin/pest --ci

# - name: Upload coverage reports to Code Climate
# run: |
# cc-test-reporter after-build

0 comments on commit 2a9ae28

Please sign in to comment.