Update README.md #6
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
jobs: | ||
build: | ||
runs-on: ${{ matrix.os }} | ||
strategy: | ||
matrix: | ||
os: [ubuntu-latest, macos-latest, windows-latest] | ||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v2 | ||
- name: Set up Python | ||
uses: actions/setup-python@v2 | ||
with: | ||
python-version: 3.9 | ||
- name: pip upgrade | ||
run: pip install --upgrade pip | ||
- name: Install dependencies | ||
run: pip install -r requirements.txt | ||
- name: Run tests | ||
run: pytest | ||
- name: Password | ||
run: python3 Password.py | ||
- name: Generate code coverage report | ||
run: coverage run --source=. -m pytest && coverage report | ||
- name: Checkout repository | ||
uses: actions/checkout@v2 | ||
with: | ||
repository: suchsoak/Strong-Password-Python | ||