-
Notifications
You must be signed in to change notification settings - Fork 2
42 lines (34 loc) · 870 Bytes
/
Copy pathci.yml
File metadata and controls
42 lines (34 loc) · 870 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
name: CI
on:
push:
branches: [main]
pull_request:
jobs:
java11-safe-modules:
runs-on: ubuntu-latest
steps:
- name: Check out
uses: actions/checkout@v4
- name: Set up Java
uses: actions/setup-java@v4
with:
distribution: temurin
java-version: "11"
cache: maven
- name: Test Java 11 safe modules
run: mvn -B -pl fastmcp-safe-core,fastmcp-safe-config -am test
java17-full-build:
runs-on: ubuntu-latest
steps:
- name: Check out
uses: actions/checkout@v4
- name: Set up Java
uses: actions/setup-java@v4
with:
distribution: temurin
java-version: "17"
cache: maven
- name: Test full reactor
run: mvn -B test
- name: Test AgentScope example
run: mvn -B -Pexamples test