From fe31b5ce4ca7ce45213482e9ec9a0c0426e0886e Mon Sep 17 00:00:00 2001 From: vyomakesh09 Date: Tue, 5 Mar 2024 19:38:24 +0000 Subject: [PATCH] add cron job into workflows --- .github/workflows/run_examples.yml | 34 ++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 .github/workflows/run_examples.yml diff --git a/.github/workflows/run_examples.yml b/.github/workflows/run_examples.yml new file mode 100644 index 00000000..75988193 --- /dev/null +++ b/.github/workflows/run_examples.yml @@ -0,0 +1,34 @@ +name: Run Examples Script + +on: + push: + branches: [ main ] + pull_request: + branches: [ main ] + schedule: + # Runs at 3:00 AM UTC every day + - cron: '0 3 * * *' + +jobs: + run-examples: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v4 + + - name: Setup Python + uses: actions/setup-python@v5 + with: + python-version: '3.9' + + - name: Install dependencies + run: | + pip install -r requirements.txt + # Assuming your script might also need pytest and swarms + pip install pytest + pip install swarms + + - name: Make Script Executable and Run + run: | + chmod +x ./swarms/scripts/run_examples.sh + ./swarms/scripts/run_examples.sh