Skip to content

Commit 779d41c

Browse files
authored
Merge pull request #35 from csp-community/copier-update-2026-04-12T23-45-03
Update from copier (2026-04-12T23:45:03)
2 parents 5c8e02b + 39d8789 commit 779d41c

5 files changed

Lines changed: 11 additions & 15 deletions

File tree

.copier-answers.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Changes here will be overwritten by Copier
2-
_commit: fdea3fe
2+
_commit: 9232d1f
33
_src_path: https://github.com/python-project-templates/base.git
44
add_docs: false
55
add_extension: python

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name: Bug Report
33
about: Report a bug to help us improve
44
title: '[BUG] '
5-
labels: bug
5+
labels: 'type: bug'
66
assignees: ''
77
---
88

.github/ISSUE_TEMPLATE/feature_request.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name: Feature Request
33
about: Suggest a new feature or improvement
44
title: '[FEATURE] '
5-
labels: enhancement
5+
labels: 'type: enhancement'
66
assignees: ''
77
---
88

.github/ISSUE_TEMPLATE/question.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name: Question
33
about: Ask a question about usage or behavior
44
title: '[QUESTION] '
5-
labels: question
5+
labels: 'tag: question'
66
assignees: ''
77
---
88

.github/workflows/build.yaml

Lines changed: 7 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -74,17 +74,13 @@ jobs:
7474
- name: Make dist
7575
run: make dist
7676

77-
- name: Test wheel install
78-
run: |
79-
python -m venv /tmp/test-wheel
80-
/tmp/test-wheel/bin/pip install dist/*.whl
81-
/tmp/test-wheel/bin/python -c "import csp_bot_commands"
82-
83-
- name: Test sdist install
84-
run: |
85-
python -m venv /tmp/test-sdist
86-
/tmp/test-sdist/bin/pip install dist/*.tar.gz
87-
/tmp/test-sdist/bin/python -c "import csp_bot_commands"
77+
- uses: actions-ext/python/test-wheel@main
78+
with:
79+
module: csp_bot_commands
80+
81+
- uses: actions-ext/python/test-sdist@main
82+
with:
83+
module: csp_bot_commands
8884

8985
- uses: actions/upload-artifact@v7
9086
with:

0 commit comments

Comments
 (0)