Skip to content

Commit

Permalink
Switch Travis for Github Action (#8)
Browse files Browse the repository at this point in the history
* Switch Travis for Github Action

* Skip testing lowest dependencies (for now)
  • Loading branch information
courtney-miles authored Jan 26, 2022
1 parent f940b28 commit 3ef2dc6
Show file tree
Hide file tree
Showing 4 changed files with 57 additions and 20 deletions.
54 changes: 54 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
name: Tests
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
php-version: ['7.2', '7.3', '7.4']
composer-flag:
- '--prefer-dist'
# - '--prefer-stable --prefer-lowest'

name: Test PHP ${{ matrix.php-version }} / composer ${{ matrix.composer-flag }}

steps:
- uses: actions/checkout@v2

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

- name: Confirm PHP Version
run: php -v

- name: Validate composer.json and composer.lock
run: composer validate --strict

- name: Cache Composer packages
id: composer-cache
uses: actions/cache@v2
with:
path: vendor
key: ${{ runner.os }}-php-${{ hashFiles('**/composer.lock') }}
restore-keys: |
${{ runner.os }}-php-
- name: Install Composer dependencies
run: composer update ${{ matrix.composer-flag }} --no-interaction --no-progress

# - name: Run Code Style Check for PHP ${{ matrix.php-version }}
# run: composer run-script style-check

- name: Run tests for PHP ${{ matrix.php-version }}
run: composer run-script test

- name: Submit test coverage to Coveralls
run: vendor/bin/php-coveralls
env:
COVERALLS_REPO_TOKEN: ${{ secrets.GITHUB_TOKEN }}
if: success() && matrix.php-version == '7.4' && matrix.composer-flag == '--prefer-dist'
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
/.idea/
/.vagrant/
/vendor/
/build/
composer.phar
phpunit.xml
Vagrantfile
.php_cs.dist
19 changes: 0 additions & 19 deletions .travis.yml

This file was deleted.

2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
},
"scripts": {
"test": [
"vendor/bin/phpunit -c phpunit.xml.dist --testsuite unit_tests --coverage-html build/coverage-report"
"vendor/bin/phpunit --coverage-clover build/logs/clover.xml"
],
"style-check": "vendor/bin/php-cs-fixer fix --dry-run --verbose --diff --allow-risky=yes --ansi",
"style-fix": "vendor/bin/php-cs-fixer fix --verbose --allow-risky=yes --ansi"
Expand Down

0 comments on commit 3ef2dc6

Please sign in to comment.