Skip to content

Commit

Permalink
Merge pull request #18 from nextras/github_actions
Browse files Browse the repository at this point in the history
add GitHub actions
  • Loading branch information
hrach committed Oct 26, 2020
2 parents 514f917 + 0870acd commit 403e9c9
Show file tree
Hide file tree
Showing 4 changed files with 81 additions and 37 deletions.
75 changes: 75 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,75 @@
name: "Build"

on:
pull_request:
types: [ "opened", "synchronize", "edited", "reopened" ]
push:
branches:
- master
- v*.*

env:
php-tools: "composer:v2, pecl"

jobs:
tests:
name: Tests

strategy:
fail-fast: false
matrix:
php-version: [ '7.1', '7.2', '7.3', '7.4', '8.0' ]
deps: [ 'lowest', 'newest' ]
exclude:
- php-version: '7.2'
deps: lowest
- php-version: '7.3'
deps: lowest
- php-version: '7.4'
deps: lowest
- php-version: '8.0'
deps: lowest

runs-on: ubuntu-latest

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

- name: Setup PHP with pecl extension
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-version }}
extensions: mbstring, intl, ctype, json
tools: ${{ env.php-tools }}

- name: Get composer cache directory
id: composercache
run: echo "::set-output name=dir::$(composer config cache-files-dir)"

- name: Cache dependencies
uses: actions/cache@v2
with:
path: ${{ steps.composercache.outputs.dir }}
key: ${{ runner.os }}-composer-${{ hashFiles('composer.json') }}
restore-keys: ${{ runner.os }}-composer-

- name: Install dependencies
if: matrix.deps == 'newest'
run: composer update --prefer-dist --no-interaction --no-progress --no-suggest

- name: Install lowest dependencies
if: matrix.deps == 'lowest'
run: composer update --prefer-dist --no-interaction --no-progress --no-suggest --prefer-lowest --prefer-stable

- name: Tests
run: ./vendor/bin/tester -C ./tests/test.php

- name: PHPStan
run: ./vendor/bin/phpstan analyze

- name: Print failed expectations
if: ${{ failure() }}
run: |
find tests -name \*.actual -exec echo "--- {}" \; -exec cat {} \; -exec echo \; -exec echo \; && \
find tests -name \*.log -exec echo "--- {}" \; -exec cat {} \; -exec echo \; -exec echo \;
29 changes: 0 additions & 29 deletions .travis.yml

This file was deleted.

11 changes: 5 additions & 6 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,18 +1,17 @@
{
"name": "nextras/orm-phpstan",
"description": "PhpStan extension for Nextras Orm",
"description": "PHPStan extension for Nextras Orm",
"type": "phpstan-extension",
"license": [
"MIT"
],
"require": {
"php": "~7.1",
"phpstan/phpstan": "^0.12.29"
"php": "~7.1 || ~8.0",
"phpstan/phpstan": "^0.12.29",
"nextras/orm": "~4.0"
},
"require-dev": {
"nette/tester": "~2.0",
"nextras/orm": "~4.0@dev",
"nextras/dbal": "~4.0@dev"
"nette/tester": "^2.3.1"
},
"autoload": {
"psr-4": {
Expand Down
3 changes: 1 addition & 2 deletions readme.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
PHPStan for Nextras Orm
=======================

[![Build Status](https://travis-ci.org/nextras/orm-phpstan.svg?branch=master)](https://travis-ci.org/nextras/orm-phpstan)

[![Build Status](https://github.com/nextras/orm-phpstan/workflows/Build/badge.svg?branch=master)](https://github.com/nextras/orm-phpstan/actions?query=workflow%3ABuild+branch%3Amaster)

PHPStan extension for Nextras Orm.

Expand Down

0 comments on commit 403e9c9

Please sign in to comment.