Skip to content

update slack message #29

update slack message

update slack message #29

Workflow file for this run

name: Run SDGym Benchmark
on:
push:
branches:
- issue-425-workflow-sdgym
workflow_dispatch:
schedule:
- cron: '0 5 1 * *'
jobs:
run-sdgym-benchmark:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up latest Python
uses: actions/setup-python@v5
with:
python-version-file: 'pyproject.toml'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install -e .[dev]
- name: Run SDGym Benchmark
env:
SLACK_TOKEN: ${{ secrets.SLACK_TOKEN }}
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
AWS_DEFAULT_REGION: ${{ secrets.AWS_REGION }}
run: invoke run-sdgym-benchmark