Skip to content

Commit

Permalink
Add server sdk v2.0 code
Browse files Browse the repository at this point in the history
  • Loading branch information
FuDongHai committed Jan 25, 2024
1 parent 3f47367 commit a353b7a
Show file tree
Hide file tree
Showing 704 changed files with 85,173 additions and 35,425 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
name: Build
on:
push:
branches: [ master ]
branches: [ master_java_2.0 ]
pull_request:
branches: [ master ]
branches: [ master_java_2.0 ]
jobs:
build:
runs-on: ubuntu-latest
Expand Down
30 changes: 30 additions & 0 deletions .github/workflows/maven.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
# This workflow will build a Java project with Maven, and cache/restore any dependencies to improve the workflow execution time
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven
#
# This file is auto-generated by OpenAPI Generator (https://openapi-generator.tech)

name: Java CI with Maven

on:
push:
branches: [ main, master_java_2.0 ]
pull_request:
branches: [ main, master_java_2.0 ]

jobs:
build:
name: Build EMService
runs-on: ubuntu-latest
strategy:
matrix:
java: [ '8' ]
steps:
- uses: actions/checkout@v2
- name: Set up JDK
uses: actions/setup-java@v2
with:
java-version: ${{ matrix.java }}
distribution: 'temurin'
cache: maven
- name: Build with Maven
run: mvn -B package --no-transfer-progress --file pom.xml
Loading

0 comments on commit a353b7a

Please sign in to comment.