Skip to content

Commit

Permalink
Updates README with CI workflow status badge
Browse files Browse the repository at this point in the history
  • Loading branch information
KwadwoAsiamah committed Jul 4, 2024
1 parent a15e1ee commit afe0ae0
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Python Password Generator CI
name: CI

on:
push:
Expand Down
10 changes: 9 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -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.
Expand All @@ -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.
Expand Down

0 comments on commit afe0ae0

Please sign in to comment.