Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 24 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: php-java test
on: push
jobs:
test:
runs-on: ${{ matrix.operating-system }}
strategy:
matrix:
operating-system: [ ubuntu-18.04 ]
php: [ '7.3', '7.4' ]
name: PHP ${{ matrix.php }}
steps:
- name: Checkout
uses: actions/checkout@master

- name: Setup PHP and Run test
uses: nanasess/setup-php@master
with:
php-version: ${{ matrix.php }}
- run: |
curl -s https://get.sdkman.io | bash
source "${HOME}/.sdkman/bin/sdkman-init.sh"
sdk install kotlin
composer install
composer run tests
11 changes: 0 additions & 11 deletions .travis.yml

This file was deleted.