Skip to content

Commit 8cf331c

Browse files
authored
Merge pull request #7 from CorefluxCommunity/prreview_action
Create pr_review.yml
2 parents 55035a7 + c9d81f1 commit 8cf331c

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

.github/workflows/pr_review.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: Pull Requests Review
2+
3+
on: [pull_request]
4+
5+
jobs:
6+
build:
7+
runs-on: ubuntu-latest
8+
steps:
9+
- name: Checkout
10+
uses: actions/checkout@v1
11+
12+
- name: Setup .NET Core
13+
uses: actions/setup-dotnet@v1
14+
15+
- name: Build
16+
run: dotnet build --configuration Release

0 commit comments

Comments
 (0)