@@ -21,39 +21,39 @@ jobs:
2121 with :
2222 args : lint --using=pint -v
2323
24- test :
25- needs : [lint] # needs lint job to pass first
26- runs-on : ubuntu-22.04
27- steps :
28- - name : Checkout
29- uses : actions/checkout@v4
30-
31- - name : Setup PHP
32- uses : shivammathur/setup-php@v2
33- with :
34- php-version : ' 8.3'
35- extensions : dom, curl, libxml, mbstring, zip, pcntl, pdo, sqlite, pdo_sqlite, bcmath, soap, intl, gd, exif, iconv
36- coverage : none
37-
38- - name : Prepare the environment
39- run : cp .env.testing .env
40-
41- - name : Install composer dependencies
42- run : composer install -q --no-ansi --no-interaction --no-scripts --no-progress
43-
44- - name : Install npm dependencies and build assets
45- run : npm ci && npm run build
46-
47- - name : Generate an application key
48- run : php artisan key:generate
49-
50- - name : Directory Permissions
51- run : chmod -R 777 storage bootstrap/cache
52-
53- - name : Create SQLite database
54- run : |
55- mkdir -p database
56- touch database/database.sqlite
57-
58- - name : Run tests
59- run : php artisan test
24+ # test:
25+ # needs: [lint] # needs lint job to pass first
26+ # runs-on: ubuntu-22.04
27+ # steps:
28+ # - name: Checkout
29+ # uses: actions/checkout@v4
30+
31+ # - name: Setup PHP
32+ # uses: shivammathur/setup-php@v2
33+ # with:
34+ # php-version: '8.3'
35+ # extensions: dom, curl, libxml, mbstring, zip, pcntl, pdo, sqlite, pdo_sqlite, bcmath, soap, intl, gd, exif, iconv
36+ # coverage: none
37+
38+ # - name: Prepare the environment
39+ # run: cp .env.testing .env
40+
41+ # - name: Install composer dependencies
42+ # run: composer install -q --no-ansi --no-interaction --no-scripts --no-progress
43+
44+ # - name: Install npm dependencies and build assets
45+ # run: npm ci && npm run build
46+
47+ # - name: Generate an application key
48+ # run: php artisan key:generate
49+
50+ # - name: Directory Permissions
51+ # run: chmod -R 777 storage bootstrap/cache
52+
53+ # - name: Create SQLite database
54+ # run: |
55+ # mkdir -p database
56+ # touch database/database.sqlite
57+
58+ # - name: Run tests
59+ # run: php artisan test
0 commit comments