Skip to content

daily

daily #1481

Workflow file for this run

name: daily
on:
# build every day at 4:00 AM UTC
schedule:
- cron: '0 4 * * *'
workflow_dispatch:
env:
TARGET_PYTHON_VERSION: '3.11'
jobs:
smoke-test-staging:
timeout-minutes: 10
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
with:
ref: main
- uses: actions/setup-python@v6
with:
python-version: '${{ env.TARGET_PYTHON_VERSION }}'
- run: |
python -m venv .venv
.venv/bin/python -m pip install --upgrade pip setuptools wheel
.venv/bin/python -m pip install tox
- name: run smoke tests (ECS staging)
env:
FUNCX_SMOKE_CLIENT_ID: ${{ secrets.API_CLIENT_ID }}
FUNCX_SMOKE_CLIENT_SECRET: ${{ secrets.API_CLIENT_SECRET_STAGING }}
GLOBUS_SDK_ENVIRONMENT: "staging"
run: |
source .venv/bin/activate
cd smoke_tests
make staging