feat(build): Switch to Taskfile

This commit is contained in:
2025-05-04 12:59:25 +01:00
parent 414e50e559
commit 5984bdd76f
2 changed files with 12 additions and 7 deletions

12
Taskfile.yaml Normal file
View File

@@ -0,0 +1,12 @@
version: 3
tasks:
python:lint:
desc: Lint Python files
cmds:
- poetry run ruff check --output-format=github --select=E9,F63,F7,F82 --target-version=py39 .
- poetry run ruff check --output-format=github --target-version=py39 .
docker:build:
desc: Build the container using Docker
cmds:
- docker build . -t smsbot:latest