diff --git a/.github/workflows/main.yaml b/.github/workflows/notify_on_push.yaml similarity index 58% rename from .github/workflows/main.yaml rename to .github/workflows/notify_on_push.yaml index c3c6ba1..1cf2f0b 100644 --- a/.github/workflows/main.yaml +++ b/.github/workflows/notify_on_push.yaml @@ -12,11 +12,14 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 - - name: greeting workflow + - name: checking out the repository + uses: actions/checkout@v3 + + - name: setting python environment uses: actions/setup-python@v5 with: python-version: '3.10' - - name : running task + + - name : running script run: | - echo "hello world" + python3 source/index.py diff --git a/requirements.txt b/.github/workflows/requirements.txt similarity index 100% rename from requirements.txt rename to .github/workflows/requirements.txt diff --git a/source/index.py b/.github/workflows/source/index.py similarity index 100% rename from source/index.py rename to .github/workflows/source/index.py