Skip to content

Commit

Permalink
add Integration Test (workflows)
Browse files Browse the repository at this point in the history
  • Loading branch information
Ahoo-Wang committed Jan 14, 2022
1 parent e2a70f9 commit fa950c7
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/integration-test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Integration Test
on: [push]
jobs:
integration-test:
runs-on: ubuntu-latest
services:
redis:
image: redis
steps:
- name: Checkout
uses: actions/checkout@master

- name: Set up JDK 8
uses: actions/setup-java@v2
with:
java-version: '8'
distribution: 'adopt'
server-id: github
settings-path: ${{ github.workspace }}

- name: Test CosId-Core
run: gradle cosid-core:clean cosid-core:check

- name: Test CosId-Redis
run: gradle cosid-redis:clean cosid-redis:check cosid-spring-redis:clean cosid-spring-redis:check
#
# - name: Test CosId-Jdbc
# run: gradle cosid-jdbc:clean cosid-jdbc:check

0 comments on commit fa950c7

Please sign in to comment.