Skip to content

Commit

Permalink
Add docker test
Browse files Browse the repository at this point in the history
  • Loading branch information
dotasek committed Mar 6, 2025
1 parent 46f4aa8 commit bc0cd0f
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/docker.yml
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit bc0cd0f

Please sign in to comment.