fix(annotations): Pass chart key to annotation logic to fix creation error #425
Workflow file for this run
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: Superset CLI tests | |
| on: | |
| push: | |
| branches: | |
| - "master" | |
| - "[0-9].[0-9]*" | |
| pull_request: | |
| types: [synchronize, opened, reopened, ready_for_review] | |
| # cancel previous workflow jobs for PRs | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.run_id }} | |
| cancel-in-progress: true | |
| jobs: | |
| test-load-examples: | |
| runs-on: ubuntu-24.04 | |
| env: | |
| PYTHONPATH: ${{ github.workspace }} | |
| SUPERSET_CONFIG: tests.integration_tests.superset_test_config | |
| REDIS_PORT: 16379 | |
| SUPERSET__SQLALCHEMY_DATABASE_URI: postgresql+psycopg2://superset:[email protected]:15432/superset | |
| services: | |
| postgres: | |
| image: postgres:15-alpine | |
| env: | |
| POSTGRES_USER: superset | |
| POSTGRES_PASSWORD: superset | |
| ports: | |
| # Use custom ports for services to avoid accidentally connecting to | |
| # GitHub action runner's default installations | |
| - 15432:5432 | |
| redis: | |
| image: redis:7-alpine | |
| ports: | |
| - 16379:6379 | |
| steps: | |
| - name: "Checkout ${{ github.ref }} ( ${{ github.sha }} )" | |
| uses: actions/checkout@v4 | |
| with: | |
| persist-credentials: false | |
| submodules: recursive | |
| - name: Check for file changes | |
| id: check | |
| uses: ./.github/actions/change-detector/ | |
| with: | |
| token: ${{ secrets.GITHUB_TOKEN }} | |
| - name: Setup Python | |
| if: steps.check.outputs.python | |
| uses: ./.github/actions/setup-backend/ | |
| - name: Setup Postgres | |
| if: steps.check.outputs.python | |
| uses: ./.github/actions/cached-dependencies | |
| with: | |
| run: setup-postgres | |
| - name: superset init | |
| if: steps.check.outputs.python | |
| run: | | |
| pip install -e . | |
| superset db upgrade | |
| superset load_test_users | |
| - name: superset load_examples | |
| if: steps.check.outputs.python | |
| run: | | |
| # load examples without test data | |
| superset load_examples --load-big-data |