Skip to content

Commit c3fb728

Browse files
committed
Add pull request workflow
1 parent d3fa8a2 commit c3fb728

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

.github/workflows/pullrequest.yaml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
name: "Pull request tester"
2+
3+
on: pull_request
4+
jobs:
5+
build:
6+
runs-on: ubuntu-latest
7+
steps:
8+
- name: Checkout Pull Request Branch
9+
uses: actions/checkout@v4
10+
with:
11+
ref: ${{ github.event.pull_request.head.ref }}
12+
- name: List files
13+
run: ls -la

0 commit comments

Comments
 (0)