Skip to content

update docs to v1.8 #85

update docs to v1.8

update docs to v1.8 #85

Workflow file for this run

on: [push]
jobs:
test-everywhere:
name: Test all platforms/versions
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macOS-latest]
version: ["2019", "2022"]
steps:
- uses: actions/checkout@v3
- name: Run the action
uses: ./
with:
install: sqlengine, sqlclient, sqlpackage, localdb
version: ${{ matrix.version }}
- name: Run sqlcmd
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
- name: Check full-text search disabled
shell: pwsh
run: |
./Test-FullTextSearch -UserName sa -Password c0MplicatedP@ssword -ExpectedStatus NotRunning