Test installability of Python Package #82
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.9", "3.10", "3.11", "3.12", "3.13"] | |
fail-fast: true | |
steps: | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install the current SDK version from PyPI | |
run: pip install exabel-data-sdk --no-cache-dir | |
- name: Post to Slack | |
uses: ravsamhq/[email protected] | |
if: failure() | |
with: | |
status: ${{ job.status }} | |
env: | |
SLACK_WEBHOOK_URL: ${{ secrets.NOTIFY_SLACK_ACTION_WEBHOOK_URL }} |