From 9a239228f319a0c43c574627c53c26712ab0ec93 Mon Sep 17 00:00:00 2001 From: Tomas Votruba Date: Thu, 17 Sep 2026 16:40:57 +0200 Subject: [PATCH] Remove bare run workflow --- .github/workflows/bare_run.yaml | 29 ----------------------------- 1 file changed, 29 deletions(-) delete mode 100644 .github/workflows/bare_run.yaml diff --git a/.github/workflows/bare_run.yaml b/.github/workflows/bare_run.yaml deleted file mode 100644 index b2136590..00000000 --- a/.github/workflows/bare_run.yaml +++ /dev/null @@ -1,29 +0,0 @@ -name: Bare Run on various PHP versions - -on: - push: - branches: - - main - -jobs: - bare_run: - runs-on: ubuntu-latest - - strategy: - fail-fast: false - matrix: - php_version: ['8.4', '8.5'] - - steps: - - uses: actions/checkout@v5 - - - - uses: shivammathur/setup-php@v2 - with: - php-version: ${{ matrix.php_version }} - coverage: none - - - run: mkdir nested-dir - - - run: composer require symplify/phpstan-rules --dev --ansi - working-directory: nested-dir