Merge pull request #198 from FS-FAST-TRACK/production/v_1 #209
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: QuizMaster - Auth API | |
on: | |
push: | |
branches: | |
- develop | |
pull_request: | |
branches: "*" | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: WebApp/backend/QuizMaster.API.Authentication | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v2 | |
- name: Setup .NET 6.x | |
uses: actions/setup-dotnet@v3 | |
with: | |
# semantic version range syntax or exact version of a dotnet version | |
dotnet-version: "6.x" | |
- name: Install Dependencies | |
run: dotnet restore | |
- name: Build Project | |
run: dotnet build | |
- name: Test with the dotnet CLI | |
run: dotnet test |