SY-4130: Add Python client support for server-side import and export #10731
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: Test - Pluto | |
| on: | |
| pull_request: | |
| paths: | |
| - .github/actions/test-typescript/** | |
| - .github/workflows/test.pluto.yaml | |
| - alamos/go/** | |
| - alamos/ts/** | |
| - aspen/** | |
| - cesium/** | |
| - client/ts/** | |
| - codecov.yaml | |
| - configs/eslint/** | |
| - configs/ts/** | |
| - configs/vite/** | |
| - core/** | |
| - freighter/go/** | |
| - freighter/ts/** | |
| - package.json | |
| - pluto/** | |
| - pnpm-lock.yaml | |
| - pnpm-workspace.yaml | |
| - turbo.json | |
| - x/go/** | |
| - x/media/** | |
| - x/ts/** | |
| push: | |
| branches: | |
| - main | |
| - rc | |
| paths: | |
| - .github/actions/test-typescript/** | |
| - .github/workflows/test.pluto.yaml | |
| - alamos/go/** | |
| - alamos/ts/** | |
| - aspen/** | |
| - cesium/** | |
| - client/ts/** | |
| - codecov.yaml | |
| - configs/eslint/** | |
| - configs/ts/** | |
| - configs/vite/** | |
| - core/** | |
| - freighter/go/** | |
| - freighter/ts/** | |
| - package.json | |
| - pluto/** | |
| - pnpm-lock.yaml | |
| - pnpm-workspace.yaml | |
| - turbo.json | |
| - x/go/** | |
| - x/media/** | |
| - x/ts/** | |
| workflow_dispatch: | |
| jobs: | |
| server: | |
| uses: ./.github/workflows/build.docker.yaml | |
| permissions: | |
| packages: write | |
| with: | |
| module: core | |
| tag: ghcr.io/synnaxlabs/synnax:${{ github.sha }} | |
| test: | |
| runs-on: ubuntu-latest | |
| needs: server | |
| env: | |
| TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }} | |
| TURBO_TEAM: ${{ vars.TURBO_TEAM }} | |
| CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} | |
| services: | |
| synnax: | |
| image: ghcr.io/synnaxlabs/synnax:${{ github.sha }} | |
| env: | |
| SYNNAX_VERBOSE: true | |
| SYNNAX_INSECURE: true | |
| SYNNAX_MEM: true | |
| SYNNAX_LICENSE_KEY: ${{ secrets.SYNNAX_LICENSE_KEY }} | |
| credentials: | |
| username: ${{ github.actor }} | |
| password: ${{ secrets.GITHUB_TOKEN }} | |
| ports: | |
| - 9090:9090 | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v6 | |
| - name: Test TypeScript | |
| uses: ./.github/actions/test-typescript | |
| with: | |
| package: pluto | |
| coverage_flag: pluto | |
| directory: pluto | |
| test_args: -- --no-file-parallelism |