Skip to content

Commit

Permalink
add Badge
Browse files Browse the repository at this point in the history
  • Loading branch information
Ahoo-Wang committed Jan 18, 2024
1 parent d43d4df commit 9a03e45
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/gitee-sync.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Sync to Gitee
on:
schedule:
- cron: '0 0 * * *'
push:
branches:
- main
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Sync to Gitee
uses: wearerequired/git-mirror-action@master
env:
SSH_PRIVATE_KEY: ${{ secrets.SSH_PRIVATE_KEY }}
with:
source-repo: "git@github.com:Ahoo-Wang/CoApi.git"
destination-repo: "git@gitee.com:AhooWang/CoApi.git"
7 changes: 7 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# CoApi

[![License](https://img.shields.io/badge/license-Apache%202-4EB1BA.svg)](https://github.com/Ahoo-Wang/CoApi/blob/mvp/LICENSE)
[![GitHub release](https://img.shields.io/github/release/Ahoo-Wang/CoApi.svg)](https://github.com/Ahoo-Wang/CoApi/releases)
[![Maven Central](https://maven-badges.herokuapp.com/maven-central/me.ahoo.coapi/api/badge.svg)](https://maven-badges.herokuapp.com/maven-central/me.ahoo.coapi/api)
[![Codacy Badge](https://app.codacy.com/project/badge/Grade/709bea2aec1d4cfd85991edf66b5ccbc)](https://app.codacy.com/gh/Ahoo-Wang/CoApi/dashboard?utm_source=gh&utm_medium=referral&utm_content=&utm_campaign=Badge_grade)
[![Codecov](https://codecov.io/gh/Ahoo-Wang/CoApi/graph/badge.svg?token=ayVd7lthB6)](https://codecov.io/gh/Ahoo-Wang/CoApi)
[![Integration Test Status](https://github.com/Ahoo-Wang/CoApi/actions/workflows/integration-test.yml/badge.svg)](https://github.com/Ahoo-Wang/CoApi)

In Spring Framework 6, a new HTTP client, [Spring6 HTTP Interface](https://docs.spring.io/spring-framework/reference/integration/rest-clients.html#rest-http-interface), has been introduced. This interface allows developers to define HTTP services as Java interfaces using the `@HttpExchange` annotation.

However, automatic configuration support is not yet provided in the current version, and developers need to implement configurations manually.
Expand Down

0 comments on commit 9a03e45

Please sign in to comment.