forked from sirius/actions-laba-1
Add taskfile
This commit is contained in:
@@ -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
5
Taskfile.yaml
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
version: "3"
|
||||||
|
|
||||||
|
tasks:
|
||||||
|
hello:
|
||||||
|
cmd: echo "Hello!!!"
|
||||||
Reference in New Issue
Block a user