Adding LocalDB support for 2022 (#32) #81
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: | |
workflow_dispatch: | |
jobs: | |
test-everywhere: | |
name: Test All Platforms | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest, windows-latest, macOS-latest] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install sqlengine | |
uses: ./ | |
with: | |
install: sqlengine | |
sa-password: c0MplicatedP@ssword | |
show-log: true | |
collation: Latin1_General_BIN | |
- name: Install sqlclient | |
uses: ./ | |
with: | |
install: sqlclient | |
show-log: true | |
- name: Install sqlpackage | |
uses: ./ | |
with: | |
install: sqlpackage | |
show-log: true | |
- name: Install localdb | |
uses: ./ | |
with: | |
install: localdb | |
show-log: true | |
- name: Run sqlcmd | |
run: sqlcmd -S localhost -U sa -P c0MplicatedP@ssword -d tempdb -Q "SELECT @@version;" -C | |
- name: Check collation | |
shell: pwsh | |
run: | | |
./Test-Collation -ExpectedCollation Latin1_General_BIN -UserName sa -Password c0MplicatedP@ssword | |