Bump MeltanoLabs/tap-salesforce to v1.9.0 #3469
Workflow file for this run
This file contains 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: Plugin Definition Validation | |
on: | |
pull_request: {} | |
push: | |
branches: [main] | |
workflow_dispatch: | |
inputs: {} | |
merge_group: | |
jobs: | |
tests: | |
name: JSON Schema Validation | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out the repository | |
uses: actions/[email protected] | |
- name: Setup Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: 3.9 | |
architecture: x64 | |
- uses: astral-sh/[email protected] | |
with: | |
version: ~=0.5.27 | |
- name: Plugin definition schema validation | |
run: | | |
uv run python utility_scripts/plugin_definitions/plugin_schema_validate.py | |
- name: Validate plugin names | |
run: | | |
uv run python utility_scripts/plugin_definitions/yaml_check_names.py | |
- name: Validate maintainers | |
run: | | |
uv run python utility_scripts/plugin_definitions/maintainers_validate.py |