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

Commit ca4fae3

Browse files
committed
add github actions
1 parent 6956dda commit ca4fae3

3 files changed

Lines changed: 90 additions & 0 deletions

File tree

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
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/"
Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
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 By TheCod3r"
30+
path: "UART-CL By TheCod3r/bin/Release/net6.0/linux-x64/publish/"
Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
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 By TheCod3r"
30+
path: "UART-CL By TheCod3r/bin/Release/net6.0/win-x86/publish/"

0 commit comments

Comments
 (0)