diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 410bb60..0dd624c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -1,4 +1,4 @@ -name: Python Password Generator CI +name: CI on: push: diff --git a/README.md b/README.md index 3a3e17f..b220b03 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,7 @@ -# Python-Password-Generator +# Python Password Generator +[![CI](https://github.com/KwadwoAsiamah/Python-Password-Generator/actions/workflows/ci.yml/badge.svg)](https://github.com/KwadwoAsiamah/Python-Password-Generator/actions/workflows/ci.yml) + A Python script to generate secure passwords containing at least one uppercase letter, one digit, and one punctuation character. ## Usage @@ -8,6 +10,9 @@ The default and minimum password length is 8. ### Linux or macOS ``` $ python3 PythonPasswordGenerator.py +``` +``` +$ python3 PythonPasswordGenerator.py Password length? [8] ``` Hit enter, and you'll get a generated password with 8 characters. @@ -27,6 +32,9 @@ QuE9_(j038 ### Windows ``` > python .\PythonPasswordGenerator.py +``` +``` +> python .\PythonPasswordGenerator.py Password length? [8] ``` Hit enter, and you'll get a generated password with 8 characters.