Github Actions CI on push

This commit is contained in:
DeveloperMarius
2021-03-22 22:58:53 +01:00
parent 6686de46b9
commit 533dd08217

21
.github/workflows/ci.yml vendored Normal file
View File

@@ -0,0 +1,21 @@
name: CI
on: [push]
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: tests/bootstrap.php
php_version: 7.4
php_extensions: json
configuration: phpunit.xml
args: --coverage-text