Skip to content

Commit 5f38e37

Browse files
committed
Workflow for checking memoryleak
1 parent 6e9a4a7 commit 5f38e37

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

.github/workflows/test.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
name: Manual Inputs
2+
on:
3+
workflow_dispatch:
4+
inputs:
5+
version:
6+
description: Bump Version
7+
default: v1.0.0
8+
required: true
9+
jobs:
10+
bump-version:
11+
name: Bump Package Version
12+
runs-on: ubuntu-latest
13+
steps:
14+
- name: Example variable usage
15+
run: git tag ${{ github.event.inputs.version }}

0 commit comments

Comments
 (0)