Adding full-text search option (#31) #73
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: [push] | |
jobs: | |
test-everywhere: | |
name: Test Action on latest Ubuntu | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Run the action | |
uses: potatoqualitee/mssqlsuite@v1.1 | |
with: | |
install: sqlengine, sqlclient, sqlpackage, localdb | |
- name: Run sqlclient | |
run: sqlcmd -S localhost -U sa -P dbatools.I0 -d tempdb -Q "SELECT @@version;" -C | |
- name: Check collation | |
shell: pwsh | |
run: | | |
./Test-Collation -ExpectedCollation SQL_Latin1_General_CP1_CI_AS -UserName sa -Password dbatools.I0 |