This repository was archived by the owner on Dec 15, 2025. It is now read-only.
File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ name : PS5 NOR Modifier Test Build
2+
3+ on :
4+ push :
5+ branches : [ "main" ]
6+ pull_request :
7+ branches : [ "main" ]
8+ workflow_dispatch :
9+
10+ jobs :
11+ test :
12+ runs-on : windows-latest
13+
14+ steps :
15+ - name : Checkout
16+ uses : actions/checkout@v4
17+
18+ - name : Execute unit tests
19+ working-directory : " PS5 NOR Modifier"
20+ run : dotnet test -a x86
21+
22+ - name : Build release
23+ working-directory : " PS5 NOR Modifier"
24+ run : dotnet publish -a x86
25+
26+ - name : Upload build artifacts
27+ uses : actions/upload-artifact@v4
28+ with :
29+ name : " PS5 NOR Modifier"
30+ path : " PS5 NOR Modifier/bin/Release/net6.0-windows/win-x86/publish/"
Original file line number Diff line number Diff line change 1+ name : UART-CL Linux Test Build
2+
3+ on :
4+ push :
5+ branches : [ "main" ]
6+ pull_request :
7+ branches : [ "main" ]
8+ workflow_dispatch :
9+
10+ jobs :
11+ test :
12+ runs-on : ubuntu-latest
13+
14+ steps :
15+ - name : Checkout
16+ uses : actions/checkout@v4
17+
18+ - name : Execute unit tests
19+ working-directory : " UART-CL By TheCod3r"
20+ run : dotnet test
21+
22+ - name : Build release
23+ working-directory : " UART-CL By TheCod3r"
24+ run : dotnet publish
25+
26+ - name : Upload build artifacts
27+ uses : actions/upload-artifact@v4
28+ with :
29+ name : " UART-CL Linux"
30+ path : " UART-CL By TheCod3r/bin/Release/net6.0/linux-x64/publish/"
Original file line number Diff line number Diff line change 1+ name : UART-CL Windows Test Build
2+
3+ on :
4+ push :
5+ branches : [ "main" ]
6+ pull_request :
7+ branches : [ "main" ]
8+ workflow_dispatch :
9+
10+ jobs :
11+ test :
12+ runs-on : windows-latest
13+
14+ steps :
15+ - name : Checkout
16+ uses : actions/checkout@v4
17+
18+ - name : Execute unit tests
19+ working-directory : " UART-CL By TheCod3r"
20+ run : dotnet test -a x86
21+
22+ - name : Build release
23+ working-directory : " UART-CL By TheCod3r"
24+ run : dotnet publish -a x86
25+
26+ - name : Upload build artifacts
27+ uses : actions/upload-artifact@v4
28+ with :
29+ name : " UART-CL Windows"
30+ path : " UART-CL By TheCod3r/bin/Release/net6.0/win-x86/publish/"
You can’t perform that action at this time.
0 commit comments