-
Notifications
You must be signed in to change notification settings - Fork 4
GitHub workflows #132
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
harveymmaunders
merged 6 commits into
morganstanley:main
from
harveymmaunders:github-workflows
Jan 12, 2026
Merged
GitHub workflows #132
Changes from all commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
838429a
Update dependabot config
harveymmaunders f94c69a
Workflow refactor
harveymmaunders 297889f
Python 3.14 support
harveymmaunders 1418ba9
Update python docs
harveymmaunders ac6f231
Merge branch 'main' into github-workflows
harveymmaunders 768a5bf
Merge branch 'main' into github-workflows
harveymmaunders File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
14 changes: 8 additions & 6 deletions
14
.github/workflows/dotnet-ci.yml → .github/workflows/dotnet-rest-ci.yml
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,33 @@ | ||
| name: Reusable Java CI Workflow | ||
|
|
||
| on: | ||
| workflow_call: | ||
| inputs: | ||
| working-directory: | ||
| required: true | ||
| type: string | ||
| description: 'Path to the directory containing the Java code to test' | ||
|
|
||
| jobs: | ||
| test: | ||
| runs-on: ubuntu-latest | ||
| strategy: | ||
| matrix: | ||
| java-version: ['11', '17', '21'] | ||
| defaults: | ||
| run: | ||
| working-directory: ${{ inputs.working-directory }} | ||
| steps: | ||
| - name: Checkout repository | ||
| uses: actions/checkout@v5 | ||
| - name: Set up JDK | ||
| uses: actions/setup-java@v5 | ||
| with: | ||
| java-version: ${{ matrix.java-version }} | ||
| distribution: 'zulu' | ||
| - name: Setup Gradle | ||
| uses: gradle/actions/setup-gradle@v3 | ||
| - name: Gradle Build | ||
| run: ./gradlew build | ||
| - name: Gradle Test | ||
| run: ./gradlew test |
This file was deleted.
Oops, something went wrong.
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,22 @@ | ||
| name: Java REST Tests | ||
|
|
||
| on: | ||
| push: | ||
| branches: [ "main" ] | ||
| paths: | ||
| - 'client-samples/java/rest/**' | ||
| - '.github/workflows/java-rest-ci.yml' | ||
| - '.github/workflows/java-base-ci.yml' | ||
| pull_request: | ||
| branches: [ "main" ] | ||
| paths: | ||
| - 'client-samples/java/rest/**' | ||
| - '.github/workflows/java-rest-ci.yml' | ||
| - '.github/workflows/java-base-ci.yml' | ||
|
|
||
| jobs: | ||
| # REST tests | ||
| rest-ci: | ||
| uses: ./.github/workflows/java-base-ci.yml | ||
| with: | ||
| working-directory: ./client-samples/java/rest |
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,22 @@ | ||
| name: Java WebSockets Tests | ||
|
|
||
| on: | ||
| push: | ||
| branches: [ "main" ] | ||
| paths: | ||
| - 'client-samples/java/websockets/**' | ||
| - '.github/workflows/java-websockets-ci.yml' | ||
| - '.github/workflows/java-base-ci.yml' | ||
| pull_request: | ||
| branches: [ "main" ] | ||
| paths: | ||
| - 'client-samples/java/websockets/**' | ||
| - '.github/workflows/java-websockets-ci.yml' | ||
| - '.github/workflows/java-base-ci.yml' | ||
|
|
||
| jobs: | ||
| # WebSockets tests | ||
| websockets-ci: | ||
| uses: ./.github/workflows/java-base-ci.yml | ||
| with: | ||
| working-directory: ./client-samples/java/websockets |
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,22 @@ | ||
| name: Python REST Tests | ||
|
|
||
| on: | ||
| push: | ||
| branches: [ "main" ] | ||
| paths: | ||
| - "client-samples/python/rest/**" | ||
| - ".github/workflows/python-rest-ci.yml" | ||
| - ".github/workflows/python-base-ci.yml" | ||
| pull_request: | ||
| branches: [ "main" ] | ||
| paths: | ||
| - "client-samples/python/rest/**" | ||
| - ".github/workflows/python-rest-ci.yml" | ||
| - ".github/workflows/python-base-ci.yml" | ||
|
|
||
| jobs: | ||
| # REST tests | ||
| rest-ci: | ||
| uses: ./.github/workflows/python-base-ci.yml | ||
| with: | ||
| working-directory: ./client-samples/python/rest |
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,22 @@ | ||
| name: Python WebSockets Tests | ||
|
|
||
| on: | ||
| push: | ||
| branches: [ "main" ] | ||
| paths: | ||
| - "client-samples/python/websockets/**" | ||
| - ".github/workflows/python-websockets-ci.yml" | ||
| - ".github/workflows/python-base-ci.yml" | ||
| pull_request: | ||
| branches: [ "main" ] | ||
| paths: | ||
| - "client-samples/python/websockets/**" | ||
| - ".github/workflows/python-websockets-ci.yml" | ||
| - ".github/workflows/python-base-ci.yml" | ||
|
|
||
| jobs: | ||
| # WebSockets tests | ||
| websockets-ci: | ||
| uses: ./.github/workflows/python-base-ci.yml | ||
| with: | ||
| working-directory: ./client-samples/python/websockets |
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
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
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.