Skip to content

Commit

Permalink
feat: use github actions instead of travis (#74)
Browse files Browse the repository at this point in the history
* feat: use github actions instead of travis

* fix: psalm error
  • Loading branch information
lkm committed Feb 4, 2022
1 parent cb196eb commit 4ea7185
Show file tree
Hide file tree
Showing 4 changed files with 50 additions and 36 deletions.
43 changes: 43 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
name: CI

on:
push:
branches: [ master ]
pull_request:
branches: [ master ]

jobs:
build:
name: PHP ${{ matrix.php-versions }} Test on ${{ matrix.operating-system }}
runs-on: ${{ matrix.operating-system }}
strategy:
matrix:
operating-system: ['ubuntu-latest']
php-versions: ['7.4', '8.0']
phpunit-versions: ['latest']

steps:
- name: Checkout
uses: actions/checkout@v2

- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-versions }}
extensions: mbstring, intl, sodium, sqlite
ini-values: post_max_size=256M, max_execution_time=180

- name: Install dependencies
run: composer install

- name: PHPUnit tests
uses: php-actions/phpunit@v3
env:
BOOKBOON_API_ID: ${{ secrets.BOOKBOON_API_ID }}
BOOKBOON_API_KEY: ${{ secrets.BOOKBOON_API_KEY }}
timeout-minutes: 30
with:
memory_limit: 256M

- name: Static Analysis
run: vendor/bin/psalm
34 changes: 0 additions & 34 deletions .travis.yml

This file was deleted.

5 changes: 5 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,5 +34,10 @@
"psr-4": {
"Helpers\\": "tests/Helpers/"
}
},
"config": {
"allow-plugins": {
"composer/package-versions-deprecated": true
}
}
}
4 changes: 2 additions & 2 deletions src/Client/OauthClient.php
Original file line number Diff line number Diff line change
Expand Up @@ -323,9 +323,9 @@ protected function normalizeHeaders(array $headers) : array
return $returnHeaders;
}

public function setAct(?string $act) : void
public function setAct(?string $appUserId) : void
{
$this->act = $act;
$this->act = $appUserId;
}

public function getAct() : ?string
Expand Down

0 comments on commit 4ea7185

Please sign in to comment.