diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml new file mode 100644 index 00000000..84839180 --- /dev/null +++ b/.github/workflows/docker.yml @@ -0,0 +1,24 @@ +# This workflow will build the Java project with Maven and peform IntelliJ smoke tests +# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven + +name: Smoke Tests + +on: + push: + branches: + - '**' + pull_request: + branches: [ master ] + +jobs: + docker-build: + runs-on: ubuntu-latest + + steps: + - name: Checkout project + uses: actions/checkout@v4 + - name: Build (no push) + uses: docker/build-push-action@v6 + with: + push: false + tags: user/app:latest \ No newline at end of file