diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index eb2f350b5..802604421 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -21,39 +21,39 @@ jobs: with: args: lint --using=pint -v - test: - needs: [lint] # needs lint job to pass first - runs-on: ubuntu-22.04 - steps: - - name: Checkout - uses: actions/checkout@v4 - - - name: Setup PHP - uses: shivammathur/setup-php@v2 - with: - php-version: '8.3' - extensions: dom, curl, libxml, mbstring, zip, pcntl, pdo, sqlite, pdo_sqlite, bcmath, soap, intl, gd, exif, iconv - coverage: none - - - name: Prepare the environment - run: cp .env.testing .env - - - name: Install composer dependencies - run: composer install -q --no-ansi --no-interaction --no-scripts --no-progress - - - name: Install npm dependencies and build assets - run: npm ci && npm run build - - - name: Generate an application key - run: php artisan key:generate - - - name: Directory Permissions - run: chmod -R 777 storage bootstrap/cache - - - name: Create SQLite database - run: | - mkdir -p database - touch database/database.sqlite - - - name: Run tests - run: php artisan test + # test: + # needs: [lint] # needs lint job to pass first + # runs-on: ubuntu-22.04 + # steps: + # - name: Checkout + # uses: actions/checkout@v4 + + # - name: Setup PHP + # uses: shivammathur/setup-php@v2 + # with: + # php-version: '8.3' + # extensions: dom, curl, libxml, mbstring, zip, pcntl, pdo, sqlite, pdo_sqlite, bcmath, soap, intl, gd, exif, iconv + # coverage: none + + # - name: Prepare the environment + # run: cp .env.testing .env + + # - name: Install composer dependencies + # run: composer install -q --no-ansi --no-interaction --no-scripts --no-progress + + # - name: Install npm dependencies and build assets + # run: npm ci && npm run build + + # - name: Generate an application key + # run: php artisan key:generate + + # - name: Directory Permissions + # run: chmod -R 777 storage bootstrap/cache + + # - name: Create SQLite database + # run: | + # mkdir -p database + # touch database/database.sqlite + + # - name: Run tests + # run: php artisan test