Skip to content

Update README.md

Update README.md #49

Workflow file for this run

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: Install dependencies
run: pip install -r requirements.txt
- name: Run tests
run: pytest
- name: Generate code coverage report
run: coverage run --source=. -m pytest && coverage report
- name: Checkout repository
uses: actions/checkout@v2
with:
repository: suchsoak/Wifi-Info-PY