Skip to content

Commit

Permalink
Merge pull request #136 from Gustavinho/release/2.4.0
Browse files Browse the repository at this point in the history
Release/2.4.0
  • Loading branch information
Gustavinho authored Sep 29, 2021
2 parents c1ea28f + 7647acd commit 299412c
Show file tree
Hide file tree
Showing 32 changed files with 2,215 additions and 666 deletions.
60 changes: 60 additions & 0 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
name: run-tests

on:
push:
branches:
- master
- dev
- release/**
- feature/**
- tests/**
pull_request:
branches:
- master
- dev
- /^release-.*$/
- /^release/.*$/
- /^feature/.*$/
- /^tests/.*$/

jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: true
matrix:
os: [ubuntu-latest]
php: [7.3, 7.4, 8.0]
laravel: [7.*, 8.*]
stability: [prefer-stable]
include:
- laravel: 8.*
testbench: ^6.6
- laravel: 7.*
testbench: ^5.0

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

steps:
- name: Checkout code
uses: actions/checkout@v2

- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
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 }}" --no-interaction --no-update
composer update --${{ matrix.stability }} --prefer-dist --no-interaction
- name: Execute tests
run: vendor/bin/phpunit
47 changes: 0 additions & 47 deletions .travis.yml

This file was deleted.

10 changes: 8 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
# Changelog

## [2.2.3] - 2021-06-26
## [2.4.0] - 2021-09-29
### Added
- Inline editing component
- New tooltip component
- Added new loading indicator next to the toolbar
## Changed
- Added tooltips to the icon actions.
## [2.3.0] - 2021-06-26
### Added
- Default value for filters
- Sortable list and grid views
Expand Down
10 changes: 9 additions & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,15 @@
"phpunit/phpunit": "7.0.*|8.5.*|9.5.*",
"orchestra/testbench": "4.*|5.*|6.*",
"laravel/legacy-factories": "^1.1",
"spatie/laravel-ray": "^1.12"
"spatie/laravel-ray": "^1.12",
"brianium/paratest": "^6.3",
"nunomaduro/collision": "^5.3",
"nunomaduro/larastan": "^0.7.6"
},
"scripts": {
"test": "./vendor/bin/testbench package:test --parallel --no-coverage",
"test-coverage": "vendor/bin/phpunit --coverage-html coverage",
"larastan": "./vendor/bin/phpstan analyse"
},
"extra": {
"laravel": {
Expand Down
Loading

0 comments on commit 299412c

Please sign in to comment.