-
Notifications
You must be signed in to change notification settings - Fork 107
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #122 from carsso/master
Adding Github actions, codecov config, updating tests accordingly and re-organize README file
- Loading branch information
Showing
13 changed files
with
426 additions
and
400 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,97 @@ | ||
# https://help.github.com/en/categories/automating-your-workflow-with-github-actions | ||
|
||
name: "CI" | ||
|
||
on: | ||
pull_request: | ||
push: | ||
branches: | ||
- "main" | ||
- "master" | ||
|
||
env: | ||
COMPOSER_ROOT_VERSION: "1.99.99" | ||
APP_KEY: ${{ secrets.OVH_TESTS_APP_KEY }} | ||
APP_SECRET: ${{ secrets.OVH_TESTS_APP_SECRET }} | ||
CONSUMER: ${{ secrets.OVH_TESTS_CONSUMER_KEY }} | ||
ENDPOINT: ${{ secrets.OVH_TESTS_ENDPOINT }} | ||
|
||
jobs: | ||
|
||
lint: | ||
name: "Lint" | ||
runs-on: "ubuntu-latest" | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
php-version: [ '7.4', '8.0', '8.1', '8.2' ] | ||
steps: | ||
- uses: "actions/checkout@v2" | ||
- uses: "shivammathur/setup-php@v2" | ||
with: | ||
php-version: "${{ matrix.php-version }}" | ||
coverage: "none" | ||
ini-values: "memory_limit=-1, zend.assertions=1, error_reporting=-1, display_errors=On" | ||
tools: "composer:v2" | ||
- uses: "ramsey/composer-install@v2" | ||
- name: "Lint the PHP source code" | ||
run: "composer parallel-lint" | ||
|
||
coding-standards: | ||
name: "Coding Standards" | ||
runs-on: "ubuntu-latest" | ||
steps: | ||
- uses: "actions/checkout@v2" | ||
- uses: "shivammathur/setup-php@v2" | ||
with: | ||
php-version: "latest" | ||
coverage: "none" | ||
ini-values: "memory_limit=-1" | ||
tools: "composer:v2" | ||
- uses: "ramsey/composer-install@v2" | ||
- name: "Check coding standards" | ||
run: "composer phpcs" | ||
|
||
coverage: | ||
name: "Coverage" | ||
runs-on: "ubuntu-latest" | ||
steps: | ||
- uses: "actions/checkout@v2" | ||
- uses: "shivammathur/setup-php@v2" | ||
with: | ||
php-version: "latest" | ||
coverage: "pcov" | ||
ini-values: "memory_limit=-1, zend.assertions=1, error_reporting=-1, display_errors=On" | ||
tools: "composer" | ||
- name: "Prepare for tests" | ||
run: "mkdir -p build/logs" | ||
- uses: "ramsey/composer-install@v2" | ||
- name: "Run unit tests" | ||
run: "composer phpunit" | ||
- name: "Publish coverage report to Codecov" | ||
uses: "codecov/codecov-action@v2" | ||
with: | ||
files: ./build/logs/clover.xml | ||
|
||
unit-tests: | ||
needs: coverage | ||
name: "Unit Tests" | ||
runs-on: "ubuntu-latest" | ||
strategy: | ||
max-parallel: 1 | ||
fail-fast: false | ||
matrix: | ||
php-version: [ '7.4', '8.0', '8.1', '8.2' ] | ||
steps: | ||
- uses: "actions/checkout@v2" | ||
- uses: "shivammathur/setup-php@v2" | ||
with: | ||
php-version: "${{ matrix.php-version }}" | ||
coverage: "none" | ||
ini-values: "memory_limit=-1, zend.assertions=1, error_reporting=-1, display_errors=On" | ||
tools: "composer" | ||
- name: "Prepare for tests" | ||
run: "mkdir -p build/logs" | ||
- uses: "ramsey/composer-install@v2" | ||
- name: "Run unit tests" | ||
run: "composer phpunit" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,9 @@ | ||
node_modules | ||
vendor | ||
/build | ||
/vendor | ||
composer.lock | ||
composer.phar | ||
/phpunit.xml | ||
/build.properties | ||
/docs | ||
.phpunit.*.cache |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.