File tree Expand file tree Collapse file tree 1 file changed +7
-29
lines changed Expand file tree Collapse file tree 1 file changed +7
-29
lines changed Original file line number Diff line number Diff line change 7
7
branches : [ "main" ]
8
8
9
9
jobs :
10
- test :
10
+ build-and- test :
11
11
runs-on : ubuntu-latest
12
12
permissions :
13
13
contents : read
@@ -31,36 +31,14 @@ jobs:
31
31
- name : Run tests
32
32
run : sbt test
33
33
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
52
36
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
61
39
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
64
42
65
43
dependency-graph :
66
44
name : Update Dependency Graph
You can’t perform that action at this time.
0 commit comments