Skip to content

Commit

Permalink
Add documents folders, modify readme, modify workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
NolanMM committed Nov 2, 2023
1 parent e3e202b commit bdca2fa
Show file tree
Hide file tree
Showing 12 changed files with 339 additions and 63 deletions.
Binary file modified .DS_Store
Binary file not shown.
50 changes: 29 additions & 21 deletions .github/workflows/Main_Branch_Workflow.yml
Original file line number Diff line number Diff line change
@@ -1,39 +1,47 @@
name: Minh_Rebase_Branch_Workflow
name: Main_Branch_Workflow

on:
push:
branches:
branches:
- main
pull_request:
branches:
branches:
- main

workflow_dispatch:

jobs:
build:
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Checkout code
uses: actions/checkout@v2

- name: Setup .NET Version 6
uses: actions/setup-dotnet@v1
with:
dotnet-version: 6.0.x
- name: Setup .NET Version 6
uses: actions/setup-dotnet@v1
with:
dotnet-version: 6.0.x

- name: Build Solution
run: dotnet build Server_Side/Server_Side.sln
- name: Build Solution
run: dotnet build Server_Side/Server_Side.sln

- name: Restore NuGet packages
run: dotnet restore Server_Side/Server_Side.sln
- name: Restore NuGet packages
run: dotnet restore Server_Side/Server_Side.sln

- name: Run Unit Tests In DatabaseAnalysisModuleTests Folder
run: dotnet test DatabaseAnalysisModuleTests/DatabaseAnalysisModuleTests.csproj
- name: Run Unit Tests In DatabaseAnalysisModuleTests Folder
run: dotnet test DatabaseAnalysisModuleTests/DatabaseAnalysisModuleTests.csproj

- name: Publish Test Results
uses: actions/upload-artifact@v2
with:
name: test-results
path: DatabseAnalysisModuleTests/TestResults
- name: Run Unit Tests In AnalysisServiceTests Folder
run: dotnet test AnalysisServiceTests/AnalysisServiceTests.csproj

- name: Publish Test Results DatabaseAnalysisModuleTests Folder
uses: actions/upload-artifact@v2
with:
name: test-results-database
path: DatabaseAnalysisModuleTests/TestResults

- name: Publish Test Results AnalysisServiceTests Folder
uses: actions/upload-artifact@v2
with:
name: test-results-analysis
path: AnalysisServiceTests/TestResults
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ on:
pull_request:
branches:
- main

workflow_dispatch:

jobs:
Expand Down
Binary file added Documents/.DS_Store
Binary file not shown.
Binary file added Documents/Project_Images/.DS_Store
Binary file not shown.
Binary file added Documents/Project_Images/High_Level_Design.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Documents/Project_Images/MVP_Design_1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Documents/Project_Images/MVP_Design_1_UI.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Documents/Project_Images/MVP_Design_2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Documents/Project_Images/MVP_Design_2_UI_1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Documents/Project_Images/MVP_Design_2_UI_2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit bdca2fa

Please sign in to comment.