Skip to content

Commit

Permalink
Remove composer.lock from repository
Browse files Browse the repository at this point in the history
  • Loading branch information
hamidgh83 committed Oct 25, 2024
1 parent 12b39f0 commit 348e7ab
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 8,901 deletions.
13 changes: 9 additions & 4 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,9 @@ on:

jobs:
phpunit:
runs-on: ${{ matrix.os }}
runs-on: ubuntu-latest
strategy:
matrix:
os: [ubuntu-latest]
php: [7.4, 8.0, 8.1, 8.2]
include:
- php: "7.4"
Expand All @@ -28,8 +27,8 @@ jobs:
- php: "8.2"
laravel: "11.*"
testbench: "^9.0"
name: PHP ${{ matrix.php }} - Laravel ${{ matrix.laravel }} - ${{ matrix.dependency-version }}

name: PHP ${{ matrix.php }} - Laravel ${{ matrix.laravel }}

steps:
- name: Checkout code
Expand All @@ -47,6 +46,12 @@ jobs:
extensions: curl, mbstring, zip, pcntl, pdo, sqlite, pdo_sqlite, iconv
coverage: none

- name: Remove Composer Lock File
run: |
if [ -f composer.lock ]; then
rm composer.lock
fi
- name: Install Composer dependencies
run: |
composer require "laravel/framework:${{ matrix.laravel }}" --dev --no-interaction -W
Expand Down
Loading

0 comments on commit 348e7ab

Please sign in to comment.