Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 5 additions & 8 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,11 +48,6 @@ jobs:
with:
enable-cache: true
cache-dependency-glob: "uv.lock"
- name: Install Temporal CLI
run: |
curl -sSf https://temporal.download/cli.sh | sh
echo "$HOME/.temporalio/bin" >> $GITHUB_PATH
shell: bash

- name: Install dependencies
run: |
Expand Down Expand Up @@ -108,7 +103,6 @@ jobs:
- name: Container & Network Teardown (Always Execute)
if: always()
run: |
temporal operator namespace delete $TEMPORAL_CI_NAMESPACE --address 127.0.0.1:7233 --yes || true
if [ -f "compose.yaml" ]; then docker compose down -v || true; fi
sudo chown -R $(whoami):$(whoami) ${{ github.workspace }}
shell: bash
Expand Down Expand Up @@ -159,7 +153,6 @@ jobs:
- name: Container & Network Teardown (Always Execute)
if: always()
run: |
temporal operator namespace delete $TEMPORAL_CI_NAMESPACE --address 127.0.0.1:7233 --yes || true
if [ -f "compose.yaml" ]; then docker compose down -v || true; fi
sudo chown -R $(whoami):$(whoami) ${{ github.workspace }}
shell: bash
Expand Down Expand Up @@ -198,6 +191,11 @@ jobs:
enable-cache: true
cache-dependency-glob: "uv.lock"

- name: Install Temporal CLI
uses: temporalio/setup-temporal@1059a504f87e7fa2f385e3fa40d1aa7e62f1c6ca
with:
version: latest

- name: Install dependencies
run: |
uv python uninstall 3.14t || true
Expand Down Expand Up @@ -298,7 +296,6 @@ jobs:
- name: Container & Network Teardown (Always Execute)
if: always()
run: |
temporal operator namespace delete $TEMPORAL_CI_NAMESPACE --address 127.0.0.1:7233 --yes || true
if [ -f "compose.yaml" ]; then docker compose down -v || true; fi
sudo chown -R $(whoami):$(whoami) ${{ github.workspace }}
shell: bash
Loading
Loading