Skip to content

Commit

Permalink
CI/DEV TEST
Browse files Browse the repository at this point in the history
  • Loading branch information
Nilton-Gabriel committed May 29, 2024
1 parent e231088 commit 7284e04
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,3 +20,19 @@ jobs:
- name: Build with Maven
run: mvn -B package -DskipTests

test:
runs-on: ubuntu-latest
needs: build
steps:
- name: Checkout code
uses: actions/checkout@v4

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

- name: Test with Maven
run: mvn test

0 comments on commit 7284e04

Please sign in to comment.