الملفات
github-actions-demos/.github/workflows/00-basic.yml
ghaymah_dev 1ca4e642a3
فشلت بعض الفحوصات
00 Basic Workflow / build (push) Failing after 1s
01 Basic Workflow with Multiple Jobs / job1 (push) Has been cancelled
01 Basic Workflow with Multiple Jobs / job2 (push) Has been cancelled
01 Basic Workflow with Multiple Jobs / job3 (push) Has been cancelled
02 Basic Dependencies / job1 (push) Has been cancelled
02 Basic Dependencies / job1a (push) Has been cancelled
02 Basic Dependencies / job2 (push) Has been cancelled
02 Basic Dependencies / job3 (push) Has been cancelled
03 Steps / build (push) Has been cancelled
04 Variables / build (push) Has been cancelled
04 Variable Hierarchy / build (push) Has been cancelled
04 Variable Hierarchy / build2 (push) Has been cancelled
05 Conditionals / greeting (push) Has been cancelled
06 Expressions / job1 (push) Has been cancelled
07 Contexts / dump_contexts_to_log (push) Has been cancelled
08 Secrets / build (push) Has been cancelled
Deploy marp site to Pages / build (push) Has been cancelled
Lint Code Base / Lint (push) Has been cancelled
Update .github/workflows/00-basic.yml
2025-09-24 18:13:21 +00:00

21 أسطر
674 B
YAML

# This is a basic workflow to help you get started with Actions
name: 00 Basic Workflow
# Controls when the workflow will run
on: [push, pull_request, workflow_dispatch]
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "build"
build:
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v4.1.1
# Runs a single command using the runners shell
- name: Run a one-line script
run: echo Hello, world!