18 أسطر
256 B
YAML
18 أسطر
256 B
YAML
name: Ghaymah Deploy
|
|
|
|
on:
|
|
push:
|
|
branches: ["main"]
|
|
pull_request:
|
|
branches: ["main"]
|
|
|
|
jobs:
|
|
|
|
test:
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v5.0.0
|
|
|
|
- name: Run tests
|
|
run: python3 test_main.py
|