mirror of
https://github.com/skipperbent/simple-php-router.git
synced 2026-06-15 18:23:26 +03:00
18 lines
365 B
YAML
18 lines
365 B
YAML
name: CI
|
|
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
build-test:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: Setup composer
|
|
uses: php-actions/composer@v5
|
|
with:
|
|
php_version: 7.4.6
|
|
- name: PHPUnit version
|
|
run: phpunit --version
|
|
- name: PHPUnit tests
|
|
run: vendor/bin/phpunit tests |