18 أسطر
326 B
YAML
18 أسطر
326 B
YAML
name: First workflow
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
jobs:
|
|
example-job:
|
|
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
|