Skip to content

Commit

Permalink
updated tests & changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
oscarotero committed Feb 1, 2025
1 parent 328b88a commit 626d854
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 11 deletions.
18 changes: 9 additions & 9 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -44,33 +44,33 @@ 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
- 8.2
- 8.3
- 8.4

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

- name: Install PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}

- name: Cache PHP dependencies
uses: actions/cache@v2
uses: actions/cache@v4
with:
path: vendor
key: ${{ runner.os }}-php-${{ matrix.php }}-composer-${{ hashFiles('**/composer.json') }}
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

- name: Tests coverage
run: composer coverage
run: composer coverage
10 changes: 8 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,13 @@
# Change Log

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] - Unreleased
### Fixed
- Compatibility with middlewares/util:^4.0 [#5]

## [2.0.1] - 2020-12-02
### Added
- Support for PHP 8
Expand Down Expand Up @@ -32,13 +35,16 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
### Changed
- Update `middlewares/utils` library for compatibility with `middlewares/request-handler`.

## 0.1.0 - 2018-08-22
## [0.1.0] - 2018-08-22
First version

[#3]: https://github.com/middlewares/base-path-router/issues/3
[#5]: https://github.com/middlewares/base-path-router/issues/5

[2.0.2]: https://github.com/middlewares/base-path-router/compare/v2.0.1...HEAD
[2.0.1]: https://github.com/middlewares/base-path-router/compare/v2.0.0...v2.0.1
[2.0.0]: https://github.com/middlewares/base-path-router/compare/v1.0.0...v2.0.0
[1.0.0]: https://github.com/middlewares/base-path-router/compare/v0.2.1...v1.0.0
[0.2.1]: https://github.com/middlewares/base-path-router/compare/v0.2.0...v0.2.1
[0.2.0]: https://github.com/middlewares/base-path-router/compare/v0.1.0...v0.2.0
[0.1.0]: https://github.com/middlewares/base-path-router/releases/tag/v0.1.0

0 comments on commit 626d854

Please sign in to comment.