Skip to content

Commit

Permalink
Merge pull request #37 from BedrockStreaming/feat-update-ci-and-codeo…
Browse files Browse the repository at this point in the history
…wners

feat: update ci & codeowners
  • Loading branch information
lnahiro authored Jan 5, 2022
2 parents 02fd72f + b1ce569 commit a168220
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 21 deletions.
1 change: 1 addition & 0 deletions .github/CODEOWNERS
Validating CODEOWNERS rules …
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
* @BedrockStreaming/messagequeuing
25 changes: 25 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Continuous Integration
on: [push]

jobs:
tests:
name: Tests
runs-on: ubuntu-20.04
strategy:
matrix:
php-version: [ '7.2', '7.3', '7.4', '8.0', '8.1' ]
symfony-version: ['^4.4', '^5.0']
steps:
- uses: actions/checkout@master
- uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-version }}
coverage: xdebug2
- name: Install symfony version from matrix
env:
SYMFONY_VERSION: ${{ matrix.symfony-version }}
run: composer require symfony/symfony:$SYMFONY_VERSION --no-update
- name: Install dependencies
run: composer update --prefer-dist --no-interaction
- name: Unit tests
run: vendor/bin/phpunit tests/
21 changes: 0 additions & 21 deletions .travis.yml

This file was deleted.

0 comments on commit a168220

Please sign in to comment.