This repository has been archived by the owner on Jan 11, 2025. It is now read-only.
Fix for CodeQL Build Error #509
Workflow file for this run
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
# | |
# In the webapi directory run: dotnet test . | |
# | |
# Dotnet test: https://learn.microsoft.com/en-us/dotnet/core/tools/dotnet-test | |
# | |
# Testing Library (MSTest): https://learn.microsoft.com/en-us/dotnet/core/testing/unit-testing-with-mstest | |
# Testing Library Resource: https://testingbot.com/support/getting-started/mstest.html | |
# | |
# Mocking Library (Moq): https://github.com/devlooped/moq/wiki/Quickstart#matching-arguments | |
# | |
name: Test Backend | |
on: | |
pull_request: | |
branches: [ main ] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Test Runner | |
working-directory: webapi | |
run: | | |
dotnet test . |