-
Notifications
You must be signed in to change notification settings - Fork 567
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Implementing GitHub Actions Workflow for Build and Test #194
Conversation
/describe |
PR Analysis
PR Feedback
How to use
|
/describe |
Implementing GitHub Actions Workflow for Build and Test
PR Type:
Enhancement
PR Description:
This PR introduces a new GitHub Actions workflow for building and testing the application. It also modifies the Dockerfile to add the application and test files in each respective build stage.
PR Main Files Walkthrough:
.github/workflows/build-and-test.yaml
: Introduced a new GitHub Actions workflow that checks out the code, sets up Docker Buildx, builds the Docker image without pushing it, and runs tests using pytest within the Docker container.docker/Dockerfile
: Modified the Dockerfile to add the application and test files in each respective build stage. This ensures that the necessary files are present during the build and test stages.