Merge pull request #202 from FS-FAST-TRACK/production/v_1 #206
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 - Gateway API | |
on: | |
push: | |
branches: | |
- develop | |
pull_request: | |
branches: "*" | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: WebApp/backend/QuizMaster.API.Gatewway | |
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 |