Skip to content

Commit

Permalink
Resolved bug with using unsorted ltree collection (#61)
Browse files Browse the repository at this point in the history
* fixed #60
  • Loading branch information
pvsaintpe authored May 6, 2021
1 parent a966eef commit cffa7b1
Show file tree
Hide file tree
Showing 8 changed files with 10,211 additions and 12 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,9 @@ jobs:
- name: 'Setup problem matchers for PHPUnit'
run: 'echo "::add-matcher::${{ runner.tool_cache }}/phpunit.json"'
- name: 'Install PHP dependencies with Composer'
run: composer install --prefer-dist --no-progress --no-suggest --optimize-autoloader
run: |
rm composer.lock
composer install --prefer-dist --no-progress --no-suggest --optimize-autoloader
working-directory: './'
- name: 'Linting PHP source files'
run: 'vendor/bin/ecs check --config=ecs.php .'
Expand Down Expand Up @@ -154,7 +156,9 @@ jobs:
coverage: pcov
tools: 'phpunit'
- name: 'Install PHP dependencies with Composer'
run: composer install --prefer-dist --no-progress --no-suggest --optimize-autoloader
run: |
rm composer.lock
composer install --prefer-dist --no-progress --no-suggest --optimize-autoloader
working-directory: './'
- name: 'Run Unit Tests with PHPUnit'
continue-on-error: ${{ matrix.experimental }}
Expand Down
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,3 @@ phpunit.xml
/build/*
.phpunit.result.cache
.DS_Store
composer.lock
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
"license": "MIT",
"require": {
"php": "^7.3|^7.4|^8.0",
"laravel/framework": "^5.8|^6.0|^7.0|^8.0",
"laravel/framework": "^5.8|^6.20.26|^7.0|^8.40",
"doctrine/dbal": "^2.9|^3.0",
"umbrellio/laravel-pg-extensions": "^5.0",
"umbrellio/laravel-common-objects": "^2.1"
Expand Down
Loading

0 comments on commit cffa7b1

Please sign in to comment.