Skip to content

Commit

Permalink
🚀 Release 9.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Elie NEHME committed Mar 28, 2023
1 parent eda1ba0 commit 6e5f8d8
Show file tree
Hide file tree
Showing 6 changed files with 191 additions and 177 deletions.
47 changes: 47 additions & 0 deletions .github/workflows/php-build.yml
@@ -0,0 +1,47 @@
name: build

on:
push:
branches: ['master', 'feature/*']
pull_request:
branches: ['master']

jobs:
build:

runs-on: ubuntu-latest
strategy:
matrix:
php-versions: [ '8.1', '8.2' ]
phpunit-versions: [ 'latest' ]

steps:
- uses: actions/checkout@v3

- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-versions }}
coverage: xdebug
tools: php-cs-fixer, phpunit:${{ matrix.phpunit-versions }}

- name: Validate composer.json and composer.lock
run: composer validate --strict --no-interaction

- name: Install Dependencies
run: composer install --no-interaction --prefer-dist --no-progress

- name: Install coveralls
run: composer require --dev --no-interaction php-coveralls/php-coveralls

- name: Launch test unit in coverage mode
run: composer test-coverage

- name: Launch check style
run: composer cs-check

- name: Publish coveralls
if: matrix.php-versions == '8.1'
env:
COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }}
run: vendor/bin/php-coveralls -v
47 changes: 0 additions & 47 deletions .travis.yml

This file was deleted.

4 changes: 2 additions & 2 deletions CHANGELOG.md
Expand Up @@ -2,15 +2,15 @@

All notable changes to this project will be documented in this file, in reverse chronological order by release.

## V9.0.1 - TBD
## V9.0.1 - 2023-03-28

### Added

- Nothing.

### Changed

- Nothing.
- [#57](https://github.com/elie29/zend-di-config/pull/57) Added support to PHP-DI 7.0

### Deprecated

Expand Down
2 changes: 1 addition & 1 deletion README.md
@@ -1,6 +1,6 @@
# zend-phpdi-config

[![Build Status](https://app.travis-ci.com/elie29/zend-di-config.svg?branch=master)](https://app.travis-ci.com/elie29/zend-di-config)
[![Build Status](https://github.com/elie29/zend-di-config/actions/workflows/php-build.yml/badge.svg)](https://github.com/elie29/zend-di-config/)
[![Coverage Status](https://coveralls.io/repos/github/elie29/zend-di-config/badge.svg)](https://coveralls.io/github/elie29/zend-di-config)

## Introduction
Expand Down
Binary file modified composer
Binary file not shown.

0 comments on commit 6e5f8d8

Please sign in to comment.