Skip to content

Commit

Permalink
Merge pull request #122 from carsso/master
Browse files Browse the repository at this point in the history
Adding Github actions, codecov config, updating tests accordingly and re-organize README file
  • Loading branch information
rbeuque74 authored Mar 13, 2023
2 parents cbb4788 + 7d606bd commit 25cb8de
Show file tree
Hide file tree
Showing 13 changed files with 426 additions and 400 deletions.
97 changes: 97 additions & 0 deletions .github/workflows/ci.yaml
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"
4 changes: 3 additions & 1 deletion .gitignore
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
17 changes: 0 additions & 17 deletions .travis.yml

This file was deleted.

Loading

0 comments on commit 25cb8de

Please sign in to comment.