الملفات
actionstest/.github/workflows/main.yml
2025-09-28 17:49:10 +03:00

20 أسطر
354 B
YAML

name: First workflow
on:
push:
branches:
- main
jobs:
example-job:
runs-on: ubuntu-latest
steps:
- name: print a welcome message
run: echo "welcome to our first github actions workflow"
- name: checkout repository
uses: actions/checkout@v5.0.0
- name: List repository files
run: ls -la