File tree Expand file tree Collapse file tree 1 file changed +8
-8
lines changed
Expand file tree Collapse file tree 1 file changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -87,13 +87,13 @@ jobs:
8787 echo ""
8888 echo "=== ODBC Driver Package Info ==="
8989 dpkg -l | grep msodbcsql
90-
90+
9191 - name : Checkout
9292 uses : actions/checkout@v6
93-
93+
9494 - name : Create MS SQL Database
9595 run : docker exec -i mssql ${{ matrix.mssql.tools-path }}/bin/sqlcmd ${{ matrix.mssql.flag }} -S localhost -U SA -P 'YourStrong!Passw0rd' -Q 'CREATE DATABASE yiitest'
96-
96+
9797 - name : Install PHP with extensions
9898 uses : shivammathur/setup-php@v2
9999 with :
@@ -102,24 +102,24 @@ jobs:
102102 ini-values : date.timezone='UTC'
103103 coverage : pcov
104104 tools : composer:v2, pecl
105-
105+
106106 - name : Determine composer cache directory
107107 run : echo "COMPOSER_CACHE_DIR=$(composer config cache-dir)" >> $GITHUB_ENV
108-
108+
109109 - name : Cache dependencies installed with composer
110110 uses : actions/cache@v4
111111 with :
112112 path : ${{ env.COMPOSER_CACHE_DIR }}
113113 key : php${{ matrix.php }}-composer-${{ hashFiles('**/composer.json') }}
114114 restore-keys : |
115115 php${{ matrix.php }}-composer-
116-
116+
117117 - name : Update composer
118118 run : composer self-update
119-
119+
120120 - name : Install dependencies with composer
121121 run : composer update --prefer-dist --no-interaction --no-progress --optimize-autoloader --ansi
122-
122+
123123 - name : Run tests with phpunit
124124 run : vendor/bin/phpunit --testsuite=Mssql --coverage-clover=coverage.xml --colors=always
125125 env :
You can’t perform that action at this time.
0 commit comments