Skip to content

Commit 1fb9e88

Browse files
committed
feat: add Taskfile
1 parent dd823c4 commit 1fb9e88

File tree

3 files changed

+21
-1
lines changed

3 files changed

+21
-1
lines changed

.tool-versions

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
task 3.42.1

Taskfile.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
# https://taskfile.dev
2+
3+
version: '3'
4+
5+
vars:
6+
GREETING: Hello, World!
7+
8+
tasks:
9+
init:
10+
cmds:
11+
- poetry install
12+
shell:
13+
cmds:
14+
- echo "$(poetry env activate)"
15+
test:
16+
deps:
17+
- init
18+
cmds:
19+
- poetry run pytest

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "easyecs"
3-
version = "0.14.1"
3+
version = "0.15.0"
44
description = ""
55
authors = ["BONVARLET Benjamin <benjaminbonvarlet96@gmail.com>"]
66
readme = "README.md"

0 commit comments

Comments
 (0)