├── .github └── workflows │ └── python-app.yml ├── .gitignore ├── README.md ├── requirements.txt ├── src ├── __init__.py └── math_operations.py └── tests ├── __init__.py └── test_operation.py /.github/workflows/python-app.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishnaik06/appgithubaction/HEAD/.github/workflows/python-app.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .github -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | ## This is the python app 1 2 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | pandas 2 | pytest -------------------------------------------------------------------------------- /src/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/math_operations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishnaik06/appgithubaction/HEAD/src/math_operations.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_operation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishnaik06/appgithubaction/HEAD/tests/test_operation.py --------------------------------------------------------------------------------