Skip to content

Commit d905910

Browse files
committed
new workflow
1 parent 5c7195e commit d905910

File tree

2 files changed

+19
-0
lines changed

2 files changed

+19
-0
lines changed

.github/workflows/hello.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# file: .github/workflows/show-directory.yml
2+
name: show-directory
3+
# on – определяет события, которые запускают воркфлоу
4+
on: push
5+
jobs:
6+
# build – произвольно выбранное имя задания
7+
# их может быть больше одного
8+
build:
9+
# операционная система для работы воркфлоу
10+
runs-on: ubuntu-latest
11+
steps: # список шагов, которые надо выполнить
12+
# экшен — выполняет какую-то задачу
13+
# checkout — клонирует репозиторий
14+
- uses: actions/checkout@v4
15+
# run – произвольная bash-команда
16+
# ls -la выведет содержимое текущего репозитория
17+
- run: make say-hello

Makefile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
make say-hello
2+
Hello, World!

0 commit comments

Comments
 (0)