Skip to content

Commit

Permalink
fixing docker on CI
Browse files Browse the repository at this point in the history
  • Loading branch information
waltercrdz committed Jan 7, 2025
1 parent 8669762 commit e5d3b30
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 6 deletions.
11 changes: 8 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,13 @@ jobs:
distribution: 'openjdk'
cache: 'maven'

- name: Build with Make
run: make build
- name: Set up Docker
uses: docker/setup-buildx-action@v2

- name: Run tests
- name: Build
run: |
chmod +x mvnw
make build
- name: Test
run: make test
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
.PHONY: build test docker-build docker-push
.PHONY: build test

build:
./mvnw clean package -DskipTests
./mvnw clean package -DskipTests

test:
./mvnw test
./mvnw test

0 comments on commit e5d3b30

Please sign in to comment.