Skip to content

Added Xunit tes

Added Xunit tes #29

Workflow file for this run

name: Build and Push Docker Image
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
jobs:
docker:
runs-on: ubuntu-latest
steps:
# Checkout repository
- name: Checkout repo
uses: actions/checkout@v4
# Setup Docker buildx
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
# Login to DockerHub
- name: Login to DockerHub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
# Build and Push Docker Image
- name: Build and Push
uses: docker/build-push-action@v5
with:
context: .
push: true
tags: nitishhsinghhh/case-conversion-api:latest