Skip to content

Commit

Permalink
Merge branch 'release/1.0.0'
Browse files Browse the repository at this point in the history
  • Loading branch information
cerbero90 committed Aug 8, 2021
2 parents 3421931 + 35549db commit f80fe6a
Show file tree
Hide file tree
Showing 30 changed files with 2,345 additions and 66 deletions.
1 change: 0 additions & 1 deletion .github/FUNDING.yml
Original file line number Diff line number Diff line change
@@ -1,2 +1 @@
github: cerbero90
custom: https://paypal.me/AndreaMarcoSartori
17 changes: 10 additions & 7 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,21 +3,24 @@ name: build
on:
push:
pull_request:
schedule:
- cron: '0 0 * * *'

jobs:
tests:
runs-on: ${{ matrix.os }}

strategy:
fail-fast: true
fail-fast: false
matrix:
php: [7.3, 7.4, 8.0]
laravel: [8.*]
php: [7.2, 7.3, 7.4, 8.0]
laravel: [6.*, 7.*, 8.*]
dependency-version: [prefer-lowest, prefer-stable]
os: [ubuntu-latest, windows-latest]
exclude:
- laravel: 6.*
php: 8.0
dependency-version: prefer-lowest
- laravel: 8.*
php: 7.2
- os: windows-latest
php: 8.0

Expand All @@ -41,7 +44,7 @@ jobs:
composer update --${{ matrix.dependency-version }} --prefer-dist --no-interaction
- name: Execute tests
run: vendor/bin/pest --verbose
run: vendor/bin/phpunit --verbose

coverage:
runs-on: ubuntu-latest
Expand All @@ -64,7 +67,7 @@ jobs:
run: composer update --prefer-stable --prefer-dist --no-interaction

- name: Execute tests
run: vendor/bin/pest --coverage-text --coverage-clover=coverage.clover
run: vendor/bin/phpunit --coverage-text --coverage-clover=coverage.clover

- name: Upload coverage
run: |
Expand Down
16 changes: 2 additions & 14 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,19 +4,7 @@ All notable changes to `lazy-json-pages` will be documented in this file.

Updates should follow the [Keep a CHANGELOG](http://keepachangelog.com/) principles.

## NEXT - YYYY-MM-DD
## 1.0.0 - 2021-08-08

### Added
- Nothing

### Deprecated
- Nothing

### Fixed
- Nothing

### Removed
- Nothing

### Security
- Nothing
- Released the first version
Loading

0 comments on commit f80fe6a

Please sign in to comment.