Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 16 additions & 16 deletions .github/workflows/swift.yml
Original file line number Diff line number Diff line change
@@ -1,22 +1,22 @@
# This workflow will build a Swift project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-swift
# سيؤدي سير العمل هذا إلى إنشاء مشروع Swift
# لمزيد من المعلومات انظر: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-swift

name: Swift
اختبار سريع -v: اسم

on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
على:

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P1 Badge Keep GitHub Actions syntax untranslated

GitHub Actions does not localize workflow schema keys or machine identifiers, so replacing on, jobs, runs-on, steps, uses, and run (along with values such as main, macos-latest, and actions/checkout@v4) with Arabic text makes this an invalid workflow rather than an Arabic-labeled one. As a result, pushes and pull requests to main will no longer execute this Swift build; translate only comments and display-name values while retaining the required Actions syntax.

Useful? React with 👍 / 👎.

يدفع:
الفروع: [ "الرئيسي" ]
طلب سحب:
الفروع: [ "الرئيسي" ]

jobs:
build:
وظائف:
بناء:

runs-on: macos-latest
يعمل على: ماكوس-الأحدث

steps:
- uses: actions/checkout@v4
- name: Build
run: swift build -v
- name: Run tests
خطوات:
- الاستخدامات: الإجراءات/checkout@v4
- اسم: بناء
الركض: بناء سريع -v
- اسم: تشغيل الاختبارات
run: swift test -v
Loading