This is a simple Python project that demonstrates the use of GitHub Actions with a Python container.
my-python-project
├── .github
│ └── workflows
│ └── python-container.yml
├── src
│ └── main.py
├── requirements.txt
└── README.md
To get started with this project, follow the instructions below.
Make sure you have the following installed:
- Python 3.x
- pip
- Clone the repository:
git clone https://github.com/yourusername/my-python-project.git - Navigate to the project directory:
cd my-python-project - Install the required dependencies:
pip install -r requirements.txt
To run the main Python script, execute the following command:
python src/main.py
This project includes a GitHub Actions workflow defined in .github/workflows/python-container.yml. The workflow runs a Python container and includes a step that echoes a few messages.
Feel free to submit issues or pull requests for any improvements or features you would like to see!