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

22 lines
812 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: ls ${{ gitea.workspace }}
- name: Статус работы
run: echo "🍏 Статус этой работы: ${{ job.status }}."