# This workflow will perform a test whenever there # is some change in code done to ensure that the changes # are not buggy and we are getting the desired output. name: Test Build with dockerfile on: [push, pull_request, workflow_dispatch] env: PROJECT_DIR: spring-petclinic IMAGE_NAME: spring-petclinic MVN_REPO_DIR: ~/.m2/repository jobs: build: name: Build image using Buildah runs-on: ubuntu-latest steps: # Checkout buildah action github repository - name: Checkout Buildah action uses: actions/checkout@v2 with: path: "buildah-build" - name: Create Dockerfile run: | cat > Dockerfile<