We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
sqlcmd
1 parent 6a17285 commit 1e7ad7dCopy full SHA for 1e7ad7d
.github/workflows/test-phpunit.yml
@@ -82,12 +82,7 @@ jobs:
82
steps:
83
- name: Create database for MSSQL Server
84
if: matrix.db-platforms == 'SQLSRV'
85
- run: |
86
- if [ ${{ matrix.php-versions == '8.0' }} ]; then
87
- sqlcmd -S localhost,1433 -U sa -P 1Secure*Password1 -Q "CREATE DATABASE test"
88
- else
89
- sqlcmd -S 127.0.0.1,1433 -U sa -P 1Secure*Password1 -Q "CREATE DATABASE test"
90
- fi
+ run: sqlcmd -S 127.0.0.1,1433 -U sa -P 1Secure*Password1 -Q "CREATE DATABASE test"
91
92
- name: Checkout
93
uses: actions/checkout@v2
0 commit comments