Bring the cloud (cloudbridge) object store to parity with the boto3 store #21193
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: OpenAPI linting | |
| on: | |
| push: | |
| paths-ignore: | |
| - 'client/**' | |
| - 'doc/**' | |
| - 'lib/galaxy_test/selenium/**' | |
| - 'packages/**' | |
| pull_request: | |
| paths-ignore: | |
| - 'client/**' | |
| - 'doc/**' | |
| - 'lib/galaxy_test/selenium/**' | |
| - 'packages/**' | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| permissions: {} | |
| jobs: | |
| validate-schema: | |
| name: Validate OpenAPI schema | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| python-version: ['3.10', '3.14'] | |
| steps: | |
| - uses: actions/checkout@v7.0.0 | |
| with: | |
| path: 'galaxy root' | |
| persist-credentials: false | |
| - name: Read Node.js version | |
| id: node-version | |
| run: echo "version=$(cat 'galaxy root/client/.node_version')" >> $GITHUB_OUTPUT | |
| - uses: actions/setup-node@v6 | |
| with: | |
| node-version: ${{ steps.node-version.outputs.version }} | |
| - name: Setup pnpm | |
| uses: pnpm/action-setup@v6 | |
| with: | |
| package_json_file: 'galaxy root/client/package.json' | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@v8.2.0 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| - name: Install Python | |
| run: uv python install | |
| - name: Install dependencies | |
| run: ./scripts/common_startup.sh --dev-wheels --skip-client-build | |
| working-directory: 'galaxy root' | |
| - name: Lint schema | |
| run: make lint-api-schema | |
| working-directory: 'galaxy root' | |
| - name: Build typescript schema | |
| run: make update-client-api-schema | |
| working-directory: 'galaxy root' | |
| - name: Diff... | |
| run: git diff | |
| working-directory: 'galaxy root' | |
| - name: Check for changes | |
| run: | | |
| if [[ `git status --porcelain` ]]; then | |
| echo "Rebuilding client/src/api/schema/schema.ts resulted in changes, run 'make update-client-api-schema' and commit results" | |
| exit 1 | |
| fi | |
| working-directory: 'galaxy root' |