Skip to content

Commit

Permalink
updated workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
oscarotero committed May 9, 2022
1 parent 91d7eaf commit f078404
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 8 deletions.
10 changes: 3 additions & 7 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@ jobs:
key: ${{ runner.os }}-php-${{ hashFiles('**/composer.lock') }}
restore-keys: |
${{ runner.os }}-php-
- name: Install dependencies
if: steps.composer-cache.outputs.cache-hit != 'true'
run: composer install --prefer-dist --no-progress
Expand All @@ -44,11 +43,8 @@ jobs:
- 7.2
- 7.3
- 7.4
composer-args: [ "" ]
include:
- php: 8.0
composer-args: --ignore-platform-reqs
fail-fast: false
- 8.0
- 8.1

steps:
- name: Checkout
Expand All @@ -67,7 +63,7 @@ jobs:
restore-keys: ${{ runner.os }}-php-${{ matrix.php }}-composer-

- name: Install dependencies
run: composer install --prefer-dist --no-progress ${{ matrix.composer-args }}
run: composer install --prefer-dist --no-progress

- name: Tests
run: composer test
Expand Down
10 changes: 9 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/)
and this project adheres to [Semantic Versioning](http://semver.org/).

## [2.0.2] - 2022-05-09
### Added
- Support psr/container 2 [#13]

## [2.0.1] - 2020-12-04
### Added
- Support for PHP 8.0
Expand Down Expand Up @@ -81,9 +85,12 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
### Fixed
- Improved docs and examples in README

## 0.1.0 - 2017-04-19
## [0.1.0] - 2017-04-19
First version

[#13]: https://github.com/middlewares/request-handler/issues/13

[2.0.2]: https://github.com/middlewares/request-handler/compare/v2.0.1...v2.0.2
[2.0.1]: https://github.com/middlewares/request-handler/compare/v2.0.0...v2.0.1
[2.0.0]: https://github.com/middlewares/request-handler/compare/v1.4.0...v2.0.0
[1.4.0]: https://github.com/middlewares/request-handler/compare/v1.3.0...v1.4.0
Expand All @@ -96,3 +103,4 @@ First version
[0.4.0]: https://github.com/middlewares/request-handler/compare/v0.3.0...v0.4.0
[0.3.0]: https://github.com/middlewares/request-handler/compare/v0.2.0...v0.3.0
[0.2.0]: https://github.com/middlewares/request-handler/compare/v0.1.0...v0.2.0
[0.1.0]: https://github.com/middlewares/request-handler/releases/tag/v0.1.0

0 comments on commit f078404

Please sign in to comment.