diff --git a/.github/workflows/code_style.yml b/.github/workflows/code_style.yml index f0fb1cd..500ca91 100644 --- a/.github/workflows/code_style.yml +++ b/.github/workflows/code_style.yml @@ -8,7 +8,7 @@ jobs: steps: - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Run PHP CS Fixer uses: docker://oskarstark/php-cs-fixer-ga diff --git a/.github/workflows/phpunit.yml b/.github/workflows/phpunit.yml index 7c47ee4..a6a63b3 100644 --- a/.github/workflows/phpunit.yml +++ b/.github/workflows/phpunit.yml @@ -1,53 +1,53 @@ -name: PHP Unit Tests -env: - BTCPAY_HOST: ${{ secrets.BTCPAY_HOST }} - BTCPAY_API_KEY: ${{ secrets.BTCPAY_API_KEY }} - BTCPAY_STORE_ID: ${{ secrets.BTCPAY_STORE_ID }} - BTCPAY_NODE_URI: ${{ secrets.BTCPAY_NODE_URI }} -on: [ push, pull_request ] - -jobs: - phpunit: - runs-on: ubuntu-latest - strategy: - matrix: - php-versions: ['8.0', '8.1'] - phpunit-versions: ['latest'] - - - steps: - - name: Checkout - uses: actions/checkout@v3 - with: - fetch-depth: '0' - - - name: Setup PHP, with composer and extensions - uses: shivammathur/setup-php@v2 - with: - php-version: ${{ matrix.php-versions }} - tools: composer:v2, phpunit:${{ matrix.phpunit-versions }} - extensions: curl, json, mbstring, bcmath - coverage: xdebug #optional - - - name: Get composer cache directory - id: composer-cache - run: echo "::set-output name=dir::$(composer config cache-files-dir)" - - - name: Cache composer dependencies - uses: actions/cache@v2 - with: - path: ${{ steps.composer-cache.outputs.dir }} - key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }} - restore-keys: ${{ runner.os }}-composer- - - - name: Install Composer dependencies - run: composer install --no-progress --optimize-autoloader - - - name: Test with phpunit - run: vendor/bin/phpunit --coverage-text - - - name: Setup problem matchers for PHP - run: echo "::add-matcher::${{ runner.tool_cache }}/php.json" - - - name: Setup problem matchers for PHPUnit - run: echo "::add-matcher::${{ runner.tool_cache }}/phpunit.json" +#name: PHP Unit Tests +#env: +# BTCPAY_HOST: ${{ secrets.BTCPAY_HOST }} +# BTCPAY_API_KEY: ${{ secrets.BTCPAY_API_KEY }} +# BTCPAY_STORE_ID: ${{ secrets.BTCPAY_STORE_ID }} +# BTCPAY_NODE_URI: ${{ secrets.BTCPAY_NODE_URI }} +#on: [ push, pull_request ] +# +#jobs: +# phpunit: +# runs-on: ubuntu-latest +# strategy: +# matrix: +# php-versions: ['8.0', '8.1'] +# phpunit-versions: ['latest'] +# +# +# steps: +# - name: Checkout +# uses: actions/checkout@v3 +# with: +# fetch-depth: '0' +# +# - name: Setup PHP, with composer and extensions +# uses: shivammathur/setup-php@v2 +# with: +# php-version: ${{ matrix.php-versions }} +# tools: composer:v2, phpunit:${{ matrix.phpunit-versions }} +# extensions: curl, json, mbstring, bcmath +# coverage: xdebug #optional +# +# - name: Get composer cache directory +# id: composer-cache +# run: echo "::set-output name=dir::$(composer config cache-files-dir)" +# +# - name: Cache composer dependencies +# uses: actions/cache@v2 +# with: +# path: ${{ steps.composer-cache.outputs.dir }} +# key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }} +# restore-keys: ${{ runner.os }}-composer- +# +# - name: Install Composer dependencies +# run: composer install --no-progress --optimize-autoloader +# +# - name: Test with phpunit +# run: vendor/bin/phpunit --coverage-text +# +# - name: Setup problem matchers for PHP +# run: echo "::add-matcher::${{ runner.tool_cache }}/php.json" +# +# - name: Setup problem matchers for PHPUnit +# run: echo "::add-matcher::${{ runner.tool_cache }}/phpunit.json" diff --git a/.github/workflows/psalm.yml b/.github/workflows/psalm.yml index 8d485bd..f807b95 100644 --- a/.github/workflows/psalm.yml +++ b/.github/workflows/psalm.yml @@ -12,7 +12,7 @@ jobs: php-versions: ['8.0'] steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: '0'