hourly #34291
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: hourly | |
| on: | |
| schedule: | |
| - cron: "0 * * * *" | |
| workflow_dispatch: | |
| inputs: | |
| tags: | |
| required: false | |
| description: "manual test" | |
| jobs: | |
| smoke-test: | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 10 | |
| steps: | |
| - uses: actions/checkout@v5 | |
| with: | |
| ref: main | |
| - uses: actions/setup-python@v6 | |
| with: | |
| python-version: "3.11" | |
| - run: python -m pip install -U pip setuptools | |
| - run: python -m pip install tox | |
| - name: Run smoke tests to check liveness of hosted services | |
| env: | |
| FUNCX_SMOKE_CLIENT_ID: ${{ secrets.API_CLIENT_ID }} | |
| FUNCX_SMOKE_CLIENT_SECRET: ${{ secrets.API_CLIENT_SECRET }} | |
| run: | | |
| cd smoke_tests | |
| make prod |