Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 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
9 changes: 8 additions & 1 deletion .github/workflows/build-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,15 @@ permissions:

jobs:

smoke-test:
name: "Smoke Test"
uses: ./.github/workflows/run-smoke-test.yml
secrets:
COPILOT_GITHUB_TOKEN: ${{ secrets.COPILOT_GITHUB_TOKEN }}

java-sdk:
name: "Java SDK Tests"
needs: smoke-test
Comment thread
edburns marked this conversation as resolved.

runs-on: ubuntu-latest
defaults:
Expand All @@ -39,7 +46,7 @@ jobs:
- uses: actions/setup-java@be666c2fcd27ec809703dec50e508c2fdc7f6654 # v5
with:
java-version: "17"
distribution: "temurin"
distribution: "microsoft"
cache: "maven"

- name: Run spotless check
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/run-smoke-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@ name: Run smoke test

on:
workflow_dispatch:
workflow_call:
secrets:
COPILOT_GITHUB_TOKEN:
required: true

permissions:
contents: read
Expand Down
Loading