test/.gitea/workflows/test_workflow.yaml
Workflow config file is invalid. Please check your config file: yaml: line 18: mapping values are not allowed in this context
2024-12-26 20:31:25 +03:00

25 lines
1021 B
YAML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

name: Gitea Actions Demo
on: [push]
jobs:
explore-gitea-actions:
runs-on: ubuntu-latest
steps:
- name: Проверка кода из репозитория
uses: actions/checkout@v4
- name: Вывод информации о событии
run: echo "🎉 Работа была автоматически запущена событием ${{ gitea.event_name }}."
- name: Вывод информации о системе
run: echo "🐧 Эта работа выполняется на сервере с ОС ${{ runner.os }}."
- name: Вывод информации о ветке и репозитории
run: echo "🔎 Имя вашей ветки: ${{ gitea.ref }}, репозиторий: ${{ gitea.repository }}."
- name: Список файлов в репозитории
run: ls ${{ gitea.workspace }}
- name: Статус работы
run: echo "🍏 Статус этой работы: ${{ job.status }}."