mirror of
https://github.com/skipperbent/simple-php-router.git
synced 2026-06-15 18:23:26 +03:00
21 lines
415 B
YAML
21 lines
415 B
YAML
name: CI
|
|
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
build-test:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
|
|
- uses: php-actions/composer@v5
|
|
|
|
- name: PHPUnit Tests
|
|
uses: php-actions/phpunit@v6
|
|
with:
|
|
bootstrap: vendor/autoload.php
|
|
php_version: 7.1
|
|
php_extensions: json
|
|
configuration: phpunit.xml
|
|
args: --coverage-text |