daux.io/.github/workflows/php.yml

73 regels
2.1 KiB
YAML

2019-11-14 08:17:17 +01:00
name: CI
on: [push]
jobs:
build:
2019-11-14 08:26:13 +01:00
strategy:
max-parallel: 15
matrix:
2019-11-14 08:30:21 +01:00
# TODO : enable tests on windows
operating-system: [ubuntu-latest, macOS-latest]
2019-11-28 22:36:26 +01:00
php-versions: ['7.2', '7.3', '7.4']
2019-11-28 23:41:53 +01:00
exclude:
2019-11-28 23:44:24 +01:00
- operating-system: macos-latest
2019-11-28 23:41:53 +01:00
php-versions: 7.4
2019-11-14 08:17:17 +01:00
2019-11-14 08:26:13 +01:00
name: PHP ${{ matrix.php-versions }} Test on ${{ matrix.operating-system }}
runs-on: ${{ matrix.operating-system }}
2019-11-14 08:17:17 +01:00
steps:
- uses: actions/checkout@v1
2019-11-14 08:26:13 +01:00
- name: Setup PHP
uses: shivammathur/setup-php@master
with:
php-version: ${{ matrix.php-versions }}
2019-12-29 20:56:55 +01:00
extension-csv: mbstring, dom, intl
2019-11-14 08:26:13 +01:00
2019-11-14 08:17:17 +01:00
- name: Validate composer.json and composer.lock
run: composer validate
- name: Install dependencies
run: composer install --prefer-dist --no-progress --no-suggest
- name: Run test suite
run: composer run-script test
2019-11-28 22:36:26 +01:00
scrutinizer-ci:
2019-11-28 22:36:26 +01:00
runs-on: ubuntu-latest
if: github.event_name != 'pull_request'
steps:
- uses: actions/checkout@v1
- name: Setup PHP
uses: shivammathur/setup-php@master
with:
php-version: 7.4
2019-11-28 22:46:35 +01:00
extension-csv: mbstring, xdebug, dom
2019-11-28 22:36:26 +01:00
coverage: xdebug
- name: Install dependencies
run: composer install --prefer-dist --no-progress --no-suggest
- name: Run test suite
run: composer run-script test -- --coverage-clover=coverage.clover
- run: wget https://scrutinizer-ci.com/ocular.phar
- name: Upload code coverage
run: php ocular.phar code-coverage:upload --format=php-clover coverage.clover
documentation:
runs-on: ubuntu-latest
if: github.repository == 'dauxio/daux.io' && github.event_name != 'pull_request' && github.ref == 'refs/heads/master'
steps:
- uses: actions/checkout@v1
- name: Install dependencies
run: composer install --prefer-dist --no-progress --no-suggest
- name: Generate documentation
2019-11-28 23:41:53 +01:00
run: bin/daux generate
- uses: JamesIves/github-pages-deploy-action@2.0.3
env:
FOLDER: "static"
BRANCH: gh-pages
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}