aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows
diff options
context:
space:
mode:
authorBruce Wells <brucekwells@gmail.com>2020-06-03 16:59:55 +0300
committerGitHub <noreply@github.com>2020-06-03 16:59:55 +0300
commit333a52e9aa64272b0011e108714c93c0f1e0d7db (patch)
treea1f6985aa44e3af0296989435427d57bc5219add /.github/workflows
parent913cf0a1e8920dbcc18649fa173a0c7e6ba5d5ef (diff)
parentea898d7a7b85aeb677f81f13784232c99b61808a (diff)
Merge pull request #4 from neonxp/master
Latest from master
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/tests.yml19
1 files changed, 19 insertions, 0 deletions
diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml
new file mode 100644
index 0000000..557134d
--- /dev/null
+++ b/.github/workflows/tests.yml
@@ -0,0 +1,19 @@
+name: Tests
+
+on: [push]
+
+jobs:
+ build-test:
+ runs-on: ubuntu-latest
+
+ steps:
+ - uses: actions/checkout@v1
+ - uses: php-actions/composer@v1
+ - name: PHPUnit
+ uses: php-actions/phpunit@v1
+ with:
+ config: ./phpunit.xml.dist
+ - name: PHP CS Fixer
+ uses: StephaneBour/actions-php-cs-fixer@1.0
+ with:
+ dir: './src'