23 أسطر
386 B
YAML
23 أسطر
386 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
|
|
|
|
- name: setup pyflake8
|
|
run: |
|
|
python -m pip install flake8
|
|
|
|
- name: run pyflake8
|
|
run: flake8 . |