Skip to content

Commit 45ea160

Browse files
authored
[Chore] Disabled test workflow job (alexjustesen#1422)
1 parent 2ddead8 commit 45ea160

File tree

1 file changed

+36
-36
lines changed

1 file changed

+36
-36
lines changed

.github/workflows/tests.yml

Lines changed: 36 additions & 36 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)