change api url #36
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test Suite | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
types: [opened, synchronize] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
container: | |
image: composer:1.9 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v1 | |
- name: Display PHP and Composer info | |
run: | | |
php -v | |
composer --version | |
- name: Install project dependencies | |
run: composer install | |
- name: Run Linter | |
run: composer lint | |
- name: Run Unit tests | |
run: composer test |