Skip to content

Commit 47c91b6

Browse files
committed
Refactor conformance test execution to simplify workflow and remove matrix strategy
1 parent 9572a27 commit 47c91b6

File tree

1 file changed

+7
-29
lines changed

1 file changed

+7
-29
lines changed

.github/workflows/scala.yml

Lines changed: 7 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77
branches: [ "main" ]
88

99
jobs:
10-
test:
10+
build-and-test:
1111
runs-on: ubuntu-latest
1212
permissions:
1313
contents: read
@@ -31,36 +31,14 @@ jobs:
3131
- name: Run tests
3232
run: sbt test
3333

34-
conformance:
35-
runs-on: ubuntu-latest
36-
permissions:
37-
contents: read
38-
39-
strategy:
40-
matrix:
41-
config:
42-
- name: Netty Server
43-
profile: netty-server
44-
- name: Http4s Server
45-
profile: http4s-server
46-
- name: Http4s Client
47-
profile: http4s-client
48-
49-
steps:
50-
- name: Checkout repository
51-
uses: actions/checkout@v4
34+
- name: Run conformance tests for http4s-server
35+
run: make test-conformance profile=http4s-server
5236

53-
- name: Set up JDK
54-
uses: actions/setup-java@v4
55-
with:
56-
java-version: '24'
57-
distribution: 'temurin'
58-
cache: 'sbt'
59-
60-
- uses: sbt/setup-sbt@v1
37+
- name: Run conformance tests for http4s-client
38+
run: make test-conformance profile=http4s-client
6139

62-
- name: Run conformance tests for ${{ matrix.config.name }}
63-
run: make test-conformance profile=${{ matrix.config.profile }}
40+
- name: Run conformance tests for netty-server
41+
run: make test-conformance profile=netty-server
6442

6543
dependency-graph:
6644
name: Update Dependency Graph

0 commit comments

Comments
 (0)