Skip to content

Commit

Permalink
Merge pull request #3 from pug-php/feature/github-actions
Browse files Browse the repository at this point in the history
Switch to GitHub Actions
  • Loading branch information
kylekatarnls authored May 2, 2021
2 parents ab2aa57 + dc0d23e commit adb421f
Show file tree
Hide file tree
Showing 5 changed files with 118 additions and 50 deletions.
62 changes: 62 additions & 0 deletions .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,62 @@
name: Coverage

on:
push:
branches: [ '**' ]
pull_request:
branches: [ '**' ]

jobs:
test:
runs-on: ubuntu-latest

strategy:
fail-fast: false
matrix:
php: ['7.4']
setup: ['stable']

name: PHP

steps:
- uses: actions/checkout@v2

- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
tools: composer:v2

- name: Cache Composer packages
id: composer-cache
uses: actions/cache@v2
with:
path: vendor
key: ${{ runner.os }}-${{ matrix.setup }}-php-${{ matrix.php }}-${{ hashFiles('**/composer.lock') }}
restore-keys: |
${{ runner.os }}-${{ matrix.setup }}-php-${{ matrix.php }}-
- name: Code Climate Test Reporter Preparation
if: ${{ env.CC_TEST_REPORTER_ID != '' }}
run: |
curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter
chmod +x ./cc-test-reporter
./cc-test-reporter before-build
env:
CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }}

- name: Install dependencies
if: steps.composer-cache.outputs.cache-hit != 'true'
run: composer update --prefer-dist --prefer-${{ matrix.setup }} --no-progress --no-interaction

- name: Run test suite
run: vendor/bin/phpunit --coverage-text --coverage-clover=coverage.xml

- name: Code Climate Test Reporter
if: ${{ env.CC_TEST_REPORTER_ID != '' }}
run: |
cp coverage.xml clover.xml
bash <(curl -s https://codecov.io/bash)
./cc-test-reporter after-build --coverage-input-type clover --exit-code 0
env:
CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }}
50 changes: 50 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
name: Tests

on:
push:
branches: [ '**' ]
pull_request:
branches: [ '**' ]

jobs:
test:
runs-on: ubuntu-latest

strategy:
fail-fast: false
matrix:
php: ['5.4', '5.5', '5.6', '7.0', '7.1', '7.2', '7.3', '7.4', '8.0', '8.1']
setup: ['lowest', 'stable']

name: PHP ${{ matrix.php }} - ${{ matrix.setup }}

steps:
- uses: actions/checkout@v2

- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
tools: composer:v2

- name: Cache Composer packages
id: composer-cache
uses: actions/cache@v2
with:
path: vendor
key: ${{ runner.os }}-${{ matrix.setup }}-php-${{ matrix.php }}-${{ hashFiles('**/composer.lock') }}
restore-keys: |
${{ runner.os }}-${{ matrix.setup }}-php-${{ matrix.php }}-
- name: Install dependencies
if: steps.composer-cache.outputs.cache-hit != 'true'
run: |
composer require --no-update nodejs-php-fallback/uglify:^1.0.2 --no-interaction
${{ matrix.php >= 7.3 && 'composer require --no-update "pug-php/pug:^2.7.5||^3.0" --no-interaction;' || '' }}
${{ matrix.php >= 7.4 && 'composer require --no-update "pug-php/pug:^2.7.6||^3.0" --no-interaction;' || '' }}
${{ matrix.php >= 8 && 'composer require --no-update phpunit/phpunit:^8.5.15 --no-interaction;' || '' }}
${{ matrix.php >= 8 && 'composer require --no-update natxet/cssmin:^3.0.5 --no-interaction;' || '' }}
composer update --prefer-dist --prefer-${{ matrix.setup }} --no-progress --no-interaction ${{ matrix.php >= 8.1 && '--ignore-platform-req=php' || '' }}
- name: Run test suite
run: vendor/bin/phpunit --no-coverage --verbose
45 changes: 0 additions & 45 deletions .travis.yml

This file was deleted.

8 changes: 4 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,17 +3,17 @@
"description": "Pug template assets manager",
"type": "library",
"require": {
"pug-php/pug": "^2.0.0 || ^3.0.0",
"pug-php/pug-minify": "^1.0.1",
"php": ">=5.4",
"pug-php/pug": "^2.0.2 || ^3.0.0",
"pug-php/pug-minify": "^1.1",
"pug-php/pug-filter-coffee-script": "^1.2",
"pug-php/pug-filter-less": "^1.0",
"pug-php/pug-filter-markdown": "^1.1",
"pug-php/pug-filter-react": "^1.0",
"pug-php/pug-filter-stylus": "^2.0"
},
"require-dev": {
"phpunit/phpunit": ">=4.8 <6.0",
"codeclimate/php-test-reporter": "^0.4.0"
"phpunit/phpunit": "^4.8.36 || ^5.7.27 || ^8.5.15"
},
"license": "MIT",
"authors": [
Expand Down
3 changes: 2 additions & 1 deletion tests/Pug/AssetsTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,11 @@

namespace Pug\Tests;

use PHPUnit\Framework\TestCase;
use Pug\Assets;
use Pug\Pug;

class AssetsTest extends \PHPUnit_Framework_TestCase
class AssetsTest extends TestCase
{
private static function cleanUp()
{
Expand Down

0 comments on commit adb421f

Please sign in to comment.