WIP: test: Fix CI to pass the TLS client flags #823
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: KFP Docs Freshness | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
paths: | |
- .github/workflows/** | |
- third_party/** | |
- README.md | |
jobs: | |
test-docs-freshness: | |
runs-on: ubuntu-24.04 | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v5 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: "3.10" | |
- name: Install Dependencies | |
run: | | |
pip install ruamel.yaml | |
- name: Verify Argo compatibility matrix freshness | |
run: | | |
python3 .github/scripts/verify-argo-matrix.py |