Bump Microsoft.Data.SqlClient from 4.0.0 to 4.0.5 in /Respawn.DatabaseTests #77
Workflow file for this run
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
name: CI | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
jobs: | |
build: | |
strategy: | |
matrix: | |
os: [windows-latest] | |
fail-fast: false | |
runs-on: windows-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- name: Setup dotnet 6.0 | |
uses: actions/setup-dotnet@v1 | |
with: | |
dotnet-version: '6.0.x' | |
- name: Start SQL Local DB | |
run: sqllocaldb start mssqllocaldb | |
- name: Build and Test | |
run: ./Build.ps1 | |
shell: pwsh | |
- name: Push to MyGet | |
env: | |
NUGET_URL: https://www.myget.org/F/respawn-ci/api/v3/index.json | |
NUGET_API_KEY: ${{ secrets.MYGET_JBOGARD_CI_API_KEY }} | |
run: ./Push.ps1 | |
shell: pwsh | |
- name: Artifacts | |
uses: actions/upload-artifact@v2 | |
with: | |
name: artifacts | |
path: artifacts/**/* |