Test installability of Python Package #144
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: Test installability of Python Package | |
| on: | |
| schedule: | |
| # Run on Fridays at 05:00 UTC | |
| - cron: '0 5 * * 5' | |
| workflow_dispatch: | |
| jobs: | |
| test-package: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"] | |
| fail-fast: true | |
| steps: | |
| - uses: actions/setup-python@v6 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| - name: Install the current SDK version from PyPI | |
| run: pip install exabel --no-cache-dir | |
| - name: Post to Slack | |
| uses: ravsamhq/notify-slack-action@2.5.0 | |
| if: failure() | |
| with: | |
| status: ${{ job.status }} | |
| env: | |
| SLACK_WEBHOOK_URL: ${{ secrets.NOTIFY_SLACK_ACTION_WEBHOOK_URL }} |