Skip to content

Commit 115ff9c

Browse files
committed
Add test workflow
Signed-off-by: Martin Nonnenmacher <[email protected]>
1 parent c53e784 commit 115ff9c

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

.github/workflows/test.yml

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: Test
2+
3+
on:
4+
merge_group:
5+
types: [ checks_requested ]
6+
pull_request:
7+
branches:
8+
- main
9+
push:
10+
branches:
11+
- main
12+
13+
jobs:
14+
test:
15+
runs-on: ubuntu-latest
16+
steps:
17+
- name: Checkout Repository
18+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
19+
- name: Test
20+
run: echo "Test"

0 commit comments

Comments
 (0)