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.
1 parent 3483031 commit c33dc80Copy full SHA for c33dc80
.github/workflows/dotnetpull.yml
@@ -30,6 +30,17 @@ jobs:
30
with:
31
dotnet-version: |
32
9.0.x
33
+ - name: Install SQLCMD tools
34
+ run: |
35
+ curl https://packages.microsoft.com/keys/microsoft.asc | sudo apt-key add -
36
+ curl https://packages.microsoft.com/config/ubuntu/20.04/prod.list | sudo tee /etc/apt/sources.list.d/msprod.list
37
+ sudo apt-get update
38
+ sudo ACCEPT_EULA=Y apt-get install -y mssql-tools unixodbc-dev
39
+ echo 'export PATH="$PATH:/opt/mssql-tools/bin"' >> ~/.bashrc
40
+ source ~/.bashrc
41
+ - name: Create database
42
43
+ sqlcmd -S localhost -U sa -P 'YourStrong@Passw0rd' -Q "CREATE DATABASE [Whatever];"
44
- name: Restore dependencies
45
run: |
46
dotnet restore Migrator.slnx
0 commit comments