Skip to content

Commit 97598c9

Browse files
committed
Add on-pull-request workflow.
1 parent 2def70d commit 97598c9

File tree

1 file changed

+29
-0
lines changed

1 file changed

+29
-0
lines changed
Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
name: on-pull-request
2+
3+
on: [pull_request]
4+
5+
jobs:
6+
7+
build-test:
8+
runs-on: ubuntu-latest
9+
10+
steps:
11+
- name: Checkout
12+
uses: actions/checkout@v4
13+
with:
14+
fetch-depth: 10
15+
16+
- name: Install tools
17+
shell: pwsh
18+
run: |
19+
Install-Module InvokeBuild -Force
20+
21+
- name: Build
22+
shell: pwsh
23+
run: |
24+
Invoke-Build
25+
26+
- name: Test
27+
shell: pwsh
28+
run: |
29+
Invoke-Build Test

0 commit comments

Comments
 (0)