Skip to content
This repository has been archived by the owner on Mar 1, 2023. It is now read-only.

Commit

Permalink
feat : added updated changelog (#149)
Browse files Browse the repository at this point in the history
* feat : added updated changelog

* feat : updated workflow syntax
  • Loading branch information
prisis authored Nov 22, 2019
1 parent 2e4ffe6 commit d065e03
Show file tree
Hide file tree
Showing 8 changed files with 40 additions and 22 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/coding-standard.yml
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
name: 'Coding Standard'
name: "Coding Standard"

on:
push:
paths:
- '**.php'
- "**.php"
pull_request:
paths:
- '**.php'
- "**.php"

jobs:
php-cs-fixer:
name: 'PHP-CS-Fixer'
name: "PHP-CS-Fixer"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
Expand All @@ -20,7 +20,7 @@ jobs:
php-version: 7.3
extension-csv: mbstring, xml, ctype, iconv, zip, dom, fileinfo
- run: composer global require narrowspark/automatic-composer-prefetcher:dev-master narrowspark/coding-standard:3.2.0 --no-interaction --no-progress --profile --no-suggest --optimize-autoloader
- name: 'lint php code'
- name: "lint php code"
run: |
cd $GITHUB_WORKSPACE
/home/runner/.composer/vendor/bin/php-cs-fixer fix --config=$GITHUB_WORKSPACE/.php_cs -v --dry-run --stop-on-violation
14 changes: 10 additions & 4 deletions .github/workflows/markdown-lint.yml
Original file line number Diff line number Diff line change
@@ -1,16 +1,22 @@
name: 'Markdown Lint'
name: "Markdown Lint"

on: [push, pull_request]
on:
push:
paths:
- "**.md"
pull_request:
paths:
- "**.md"

jobs:
text-lint:
name: 'Markdown lint'
name: "Markdown lint"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Setup node
uses: actions/setup-node@v1
with:
node-version: '10.16.0'
node-version: "10.16.0"
- run: npm install
- run: npm run lint
10 changes: 5 additions & 5 deletions .github/workflows/mutation.yml
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
name: 'Mutation testing'
name: "Mutation testing"

on:
push:
paths:
- '**.php'
- "**.php"
pull_request:
paths:
- '**.php'
- "**.php"

jobs:
php-cs-fixer:
name: 'Infection'
name: "Infection"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
Expand All @@ -19,5 +19,5 @@ jobs:
with:
php-version: 7.2
- run: composer install
- name: 'mutation tests'
- name: "mutation tests"
run: ulimit -n 4096 && phpdbg -qrr ./vendor/bin/infection -vvv --min-msi=40 --min-covered-msi=60
10 changes: 5 additions & 5 deletions .github/workflows/static-analyze.yml
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
name: 'Static analyzing'
name: "Static analyzing"

on:
push:
paths:
- '**.php'
- "**.php"
pull_request:
paths:
- '**.php'
- "**.php"

jobs:
php-cs-fixer:
name: 'PHPStan'
name: "PHPStan"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
Expand All @@ -19,5 +19,5 @@ jobs:
with:
php-version: 7.2
- run: composer install
- name: 'analyze php code'
- name: "analyze php code"
run: composer phpstan
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
v0.13.1
=======

- Total issues resolved: **0**
- Total pull requests resolved: **1**
- Total contributors: **1**

Fixed
-----

- [148: fix : added method check for filesystem readlink](https://github.com/narrowspark/automatic/pull/148) thanks to @prisis

v0.13.0
=======

Expand Down
2 changes: 1 addition & 1 deletion src/Automatic/Automatic.php
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ class Automatic implements EventSubscriberInterface, PluginInterface
use GetGenericPropertyReaderTrait;

/** @var string */
public const VERSION = '0.13.0';
public const VERSION = '0.13.1';

/** @var string */
public const LOCK_CLASSMAP = 'classmap';
Expand Down
2 changes: 1 addition & 1 deletion src/Prefetcher/Plugin.php
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@
class Plugin implements EventSubscriberInterface, PluginInterface
{
/** @var string */
public const VERSION = '0.13.0';
public const VERSION = '0.13.1';

/** @var string */
public const COMPOSER_EXTRA_KEY = 'prefetcher';
Expand Down
2 changes: 1 addition & 1 deletion src/Security/Plugin.php
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
class Plugin implements Capable, EventSubscriberInterface, PluginInterface
{
/** @var string */
public const VERSION = '0.13.0';
public const VERSION = '0.13.1';

/** @var string */
public const COMPOSER_EXTRA_KEY = 'audit';
Expand Down

0 comments on commit d065e03

Please sign in to comment.