Skip to content

Commit d29d5a0

Browse files
authored
add placeholder release workflow
This workflow is set up to run on manual dispatch and includes steps for checking out the code and setting up Python.
1 parent a246085 commit d29d5a0

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

.github/workflows/release.yaml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: Release
2+
3+
on:
4+
workflow_dispatch:
5+
6+
jobs:
7+
test:
8+
runs-on: ubuntu-latest
9+
steps:
10+
- uses: actions/checkout@v4
11+
12+
- name: Set up Python
13+
uses: actions/setup-python@v5
14+
with:
15+
python-version: '3.12'
16+
17+
- name: Placeholder
18+
run: echo "Tests workflow placeholder - will be expanded"

0 commit comments

Comments
 (0)