You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
swarms/.github/workflows/run_examples.yml

36 lines
735 B

name: Run Examples Script
on: [push]
# 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 ./scripts/run_examples.sh
./scripts/run_examples.sh