AuthenticateAsync returns AuthResult when is successful #160
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: Clean DDD Architecture .NET Core Template | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: recursive | |
- name: Setup .NET Core | |
uses: actions/setup-dotnet@v3 | |
with: | |
dotnet-version: 7.0.203 | |
- name: Install dotnet ef | |
run: dotnet tool install --global dotnet-ef --version 7.0.5 | |
- name: Build with dotnet | |
run: dotnet build --configuration Release |