Skip to content
Draft
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
17 changes: 0 additions & 17 deletions .github/workflows/test-sdk-packages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,24 +7,7 @@ on:
- workflow-test/*

jobs:
# Filter the changed paths so these jobs can run only on changes to the ufc test data, or if the current branch matches workflow-test/*
check-path:
runs-on: ubuntu-latest
outputs:
should_run: ${{ github.ref == 'refs/heads/main' && steps.filter.outputs.ufc == 'true' || startsWith(github.ref, 'refs/heads/workflow-test/') }}
steps:
- uses: actions/checkout@v4
- uses: dorny/paths-filter@v2
id: filter
with:
filters: |
ufc:
- 'ufc/**'
- '!ufc/**/*.md'

test-node-sdk:
needs: check-path
if: needs.check-path.outputs.should_run == 'true'
runs-on: ${{ matrix.platform == 'linux' && 'ubuntu-latest' || matrix.platform == 'macos' && 'macos-13' || matrix.platform == 'windows' && 'windows-latest' }}
strategy:
fail-fast: false
Expand Down
6 changes: 6 additions & 0 deletions .github/workflows/test-sdks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,12 @@ jobs:
test_data_branch: ${{ github.head_ref || github.ref_name }}
sdk_branch: main

test-ruby-sdk:
uses: Eppo-exp/eppo-multiplatform/.github/workflows/ruby.yml@main
with:
test_data_branch: ${{ github.head_ref || github.ref_name }}
sdk_branch: main

test-multiplatform-sdk:
uses: 'Eppo-exp/eppo-multiplatform/.github/workflows/ci.yml@main'
with:
Expand Down