Add taskfile

This commit is contained in:
2025-11-24 16:14:10 +03:00
parent cce9258230
commit d42a17e98e
2 changed files with 13 additions and 1 deletions

View File

@@ -7,4 +7,11 @@ jobs:
second-job: second-job:
runs-on: docker runs-on: docker
steps: steps:
- run: env - name: Install task utility
run: |
curl -1sLf 'https://dl.cloudsmith.io/public/task/task/setup.deb.sh' | bash
apt update
apt install task
- name: Run task hello
run: task hello

5
Taskfile.yaml Normal file
View File

@@ -0,0 +1,5 @@
version: "3"
tasks:
hello:
cmd: echo "Hello!!!"