diff --git a/.github/workflows/cs.yml b/.github/workflows/cs.yml deleted file mode 100644 index b3c51a1..0000000 --- a/.github/workflows/cs.yml +++ /dev/null @@ -1,30 +0,0 @@ -name: CodingStandard - -on: - workflow_call: - inputs: - php: - required: false - type: string - default: "8.1" -jobs: - cs: - timeout-minutes: 10 - runs-on: ubuntu-latest - name: Coding standard - steps: - - uses: actions/checkout@v3 - - - name: Setup PHP - uses: shivammathur/setup-php@v2 - with: - php-version: "${{ inputs.php }}" - - - name: Secret export - run: echo '${{ secrets.COMPOSER_AUTH }}' > $GITHUB_WORKSPACE/auth.json - - - name: Composer - uses: ramsey/composer-install@v2 - - - name: CS - run: make cs diff --git a/.github/workflows/phpstan.yml b/.github/workflows/phpstan.yml deleted file mode 100644 index e4fe1c7..0000000 --- a/.github/workflows/phpstan.yml +++ /dev/null @@ -1,30 +0,0 @@ -name: PHPStan - -on: - workflow_call: - inputs: - php: - required: false - type: string - default: "8.1" -jobs: - phpstan: - timeout-minutes: 10 - runs-on: ubuntu-latest - name: PHPStan - steps: - - uses: actions/checkout@v3 - - - name: Setup PHP - uses: shivammathur/setup-php@v2 - with: - php-version: "${{ inputs.php }}" - - - name: Secret export - run: echo '${{ secrets.COMPOSER_AUTH }}' > $GITHUB_WORKSPACE/auth.json - - - name: Composer - uses: ramsey/composer-install@v2 - - - name: PHPStan - run: make phpstan diff --git a/.github/workflows/unit.yml b/.github/workflows/unit.yml deleted file mode 100644 index cccf5a0..0000000 --- a/.github/workflows/unit.yml +++ /dev/null @@ -1,30 +0,0 @@ -name: Unit tests - -on: - workflow_call: - inputs: - php: - required: false - type: string - default: "8.1" -jobs: - unit: - timeout-minutes: 10 - runs-on: ubuntu-latest - name: Unit testy - steps: - - uses: actions/checkout@v3 - - - name: Setup PHP - uses: shivammathur/setup-php@v2 - with: - php-version: "${{ inputs.php }}" - - - name: Secret export - run: echo '${{ secrets.COMPOSER_AUTH }}' > $GITHUB_WORKSPACE/auth.json - - - name: Composer - uses: ramsey/composer-install@v2 - - - name: Unit testy - run: make unit