This GitHub action automatically installs a SQL server and adventureworkslt database on Windows for testing.
On Windows, we install an Express edition of the container.
On Linux, use docker image directly: https://github.com/openentity/adventureworksltdb
sa-password: The sa password for the SQL instances.
name: Continuous Integration
on:
pull_request:
push:
schedule:
- cron: "30 8 * * 1"
jobs:
test:
name: Tests
runs-on: windows-latest
steps:
- name: Setup MSSQL AdventureWorksLT Database
uses: openentity/setup-mssql@v1
with:
sa-password: "iamastrongpassword1234!"The scripts and documentation in this project are released under the MIT License.