Skip to content

Commit

Permalink
ci: add ci workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
YOU54F committed Oct 9, 2024
1 parent 457576b commit 11e2266
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: CI
on:
push:
pull_request:
branches:
- master
jobs:
test:
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v4

- name: Set up JDK 8
uses: actions/setup-java@v4
with:
java-version: 8
distribution: 'zulu'

- name: Test consumer tests
run: ./gradlew consumer:test
- name: Test provider pact tests
run: ./gradlew provider:test

0 comments on commit 11e2266

Please sign in to comment.