Skip to content

Commit

Permalink
Add Github Workflows for builds
Browse files Browse the repository at this point in the history
  • Loading branch information
Martin de Keijzer committed Feb 12, 2021
1 parent 8497b60 commit 201e961
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .github/workflows/build-source.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
name: Static analysis of live-broadcast-bundle
on: [push]
jobs:
phpunit:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: php-actions/composer@v5
- name: Run PHPCS
run: ./vendor/bin/phpcs --standard=./vendor/escapestudios/symfony2-coding-standard/Symfony/ Broadcaster/ Command/ DependencyInjection/ Entity/ EventListener/ Exception/ Resources/ Service/ Tests/ LiveBroadcastBundle.php
- name: Run PHPUnit
run: ./vendor/bin/phpunit --coverage-text --colors

0 comments on commit 201e961

Please sign in to comment.