Skip to content

Commit

Permalink
Merge pull request #19 from oat-sa/feature/gh-action-ci
Browse files Browse the repository at this point in the history
Replace Jenkins and Travis CI in favor of GH Action CI
  • Loading branch information
ekkinox authored Apr 14, 2021
2 parents 6d46c61 + 7896284 commit fed7632
Show file tree
Hide file tree
Showing 3 changed files with 48 additions and 53 deletions.
33 changes: 0 additions & 33 deletions .Jenkinsfile

This file was deleted.

48 changes: 48 additions & 0 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
name: Build

on: push

jobs:
build:
runs-on: ubuntu-20.04

strategy:
fail-fast: false
matrix:
php: [7.2, 7.3, 7.4]
coverage: ["true"]
include:
- php: 8.0
coverage: "false" # PHPUnit 8.5.14 doesn't support code coverage under PHP 8

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

- name: Setup PHP & Composer
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
tools: composer:v2

- name: Install dependencies
run: composer install --no-interaction --no-suggest

- name: PHPUnit
env:
COVERAGE: ${{ matrix.coverage }}
run: |
[ $COVERAGE = "true" ] \
&& mkdir -p build/logs && ./vendor/bin/phpunit --coverage-clover build/logs/clover.xml \
|| ./vendor/bin/phpunit
- name: Psalm
run: |
./vendor/bin/psalm --shepherd
- name: Coveralls
if: ${{ matrix.coverage == 'true' }}
env:
COVERALLS_REPO_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
./vendor/bin/php-coveralls -v
20 changes: 0 additions & 20 deletions .travis.yml

This file was deleted.

0 comments on commit fed7632

Please sign in to comment.