Skip to content

Commit

Permalink
Test & package project
Browse files Browse the repository at this point in the history
  • Loading branch information
knokko authored and knokko committed Dec 2, 2024
1 parent aed9440 commit 626c0aa
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
name: Test

on: [push, pull_request]

jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.9
uses: actions/setup-python@v3
with:
python-version: "3.9"
- run: python -m unittest tests/**.py
9 changes: 9 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"

[project]
name = 'helpor'
version = '0.1.0'
requires-python = '>= 3.9'

0 comments on commit 626c0aa

Please sign in to comment.