Update README to include scope in auth instructions #369
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: Run Test Suite on PR or push to main | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
test: | |
services: | |
sql.data: | |
image: mcr.microsoft.com/mssql/server | |
env: | |
SA_PASSWORD: yourStrong(!)Password | |
ACCEPT_EULA: Y | |
ports: | |
- "1433:1433" | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup .NET Core | |
uses: actions/setup-dotnet@v1 | |
- name: Install dependencies | |
run: dotnet restore | |
- name: Test | |
run: dotnet test |