Skip to content
This repository was archived by the owner on Dec 15, 2025. It is now read-only.

Commit 024258c

Browse files
committed
add github actions
1 parent f792904 commit 024258c

2 files changed

Lines changed: 67 additions & 0 deletions

File tree

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
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: Install .NET Core
19+
uses: actions/setup-dotnet@v4
20+
21+
- name: Execute unit tests
22+
working-directory: "PS5 NOR Modifier"
23+
run: dotnet test -a x86
24+
25+
- name: Build release
26+
working-directory: "PS5 NOR Modifier"
27+
run: dotnet publish -a x86
28+
29+
- name: Upload build artifacts
30+
uses: actions/upload-artifact@v4
31+
with:
32+
path: "PS5 NOR Modifier/bin/Release/net6.0/win-x86/publish/PS5 NOR Modifier.exe"

.github/workflows/uart-cl.yml

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
name: UART-CL 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: ${{ matrix.os }}
13+
strategy:
14+
matrix:
15+
os: [ubuntu-latest, windows-latest]
16+
17+
steps:
18+
- name: Checkout
19+
uses: actions/checkout@v4
20+
21+
- name: Install .NET Core
22+
uses: actions/setup-dotnet@v4
23+
24+
- name: Execute unit tests
25+
working-directory: "UART-CL By TheCod3r"
26+
run: dotnet test -a x86
27+
28+
- name: Build release
29+
working-directory: "UART-CL By TheCod3r"
30+
run: dotnet publish -a x86
31+
32+
- name: Upload build artifacts
33+
uses: actions/upload-artifact@v4
34+
with:
35+
path: "UART-CL By TheCod3r/bin/Release/net6.0/win-x86/publish/UART-CL By TheCod3r.exe"

0 commit comments

Comments
 (0)