Skip to content

Merge pull request #437 from jackgene/python-rxpy-rshift #1

Merge pull request #437 from jackgene/python-rxpy-rshift

Merge pull request #437 from jackgene/python-rxpy-rshift #1

Workflow file for this run

# Generated file. DO NOT EDIT.
'on':
push:
paths:
- swift-async/**
- .github/workflows/swift-async.yaml
pull_request:
paths:
- swift-async/**
- .github/workflows/swift-async.yaml
workflow_run:
workflows:
- scenario-server
types:
- completed
jobs:
test:
runs-on: macos-latest
if: ${{ github.event.workflow_run == null || github.event.workflow_run.conclusion == 'success' }}
steps:
- uses: actions/checkout@v4
- uses: atomicjar/testcontainers-cloud-setup-action@v1
with:
token: ${{ secrets.TC_CLOUD_TOKEN }}
- name: Set up Docker socket
run: |-
brew install socat
DOCKER_PORT=$(grep tc.host ~/.testcontainers.properties | cut -d: -f3)
sudo socat UNIX-LISTEN:/var/run/docker.sock,reuseaddr,fork TCP-CONNECT:127.0.0.1:$DOCKER_PORT &
sleep 2
sudo chmod a+rw /var/run/docker.sock
- name: Run scenarios
run: swift test -c release
defaults:
run:
working-directory: swift-async