We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 16753ea commit 6be1faaCopy full SHA for 6be1faa
.github/CODEOWNERS
@@ -0,0 +1,4 @@
1
+# Note: order is important; the last matching pattern takes the most precedence
2
+
3
+# Global rule
4
+* @BedrockStreaming/monitoring-qa
.github/PULL_REQUEST_TEMPLATE.md
@@ -0,0 +1,7 @@
+## Why?
+<!-- Explain why you've opened this PR -->
5
+## TODO
6
+- [ ] code is tested
7
+- [ ] documentation is updated (if needed)
.github/workflows/ci.yml
@@ -0,0 +1,14 @@
+name: Continuous Integration
+on: [push]
+jobs:
+ linter:
+ name: Code style
+ runs-on: ubuntu-20.04
8
+ steps:
9
+ - uses: actions/checkout@master
10
+ - uses: shivammathur/setup-php@v2
11
+ with:
12
+ php-version: 7.4
13
+ - run: composer install --prefer-dist --no-interaction
14
+ - run: vendor/bin/php-cs-fixer fix --ansi --dry-run --using-cache=no --verbose
0 commit comments