Merge pull request #2 from mtrilbybassett/patch-1 #11
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: Deploy Database | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
Deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repo | |
uses: actions/checkout@v2 | |
- name: Setup .NET Core | |
uses: actions/setup-dotnet@v1.4.0 | |
with: | |
dotnet-version: '3.1.100' | |
- name: Restore dependencies | |
working-directory: db-deploy | |
run: dotnet restore | |
- name: Deploy | |
working-directory: db-deploy | |
env: | |
ConnectionString: ${{ secrets.AZURE_SQL_CONNECTION_STRING }} | |
run: dotnet run | |
Test: | |
runs-on: ubuntu-latest | |
needs: [Deploy] | |
steps: | |
- name: Checkout Repo | |
uses: actions/checkout@v2 | |
- name: Setup .NET Core | |
uses: actions/setup-dotnet@v1.4.0 | |
with: | |
dotnet-version: '3.1.100' | |
- name: Restore dependencies | |
working-directory: db-test | |
run: dotnet restore | |
- name: Run Tests | |
working-directory: db-test | |
env: | |
ConnectionString: ${{ secrets.AZURE_SQL_CONNECTION_STRING }} | |
run: dotnet test | |