nanovna-saver/.github/workflows/pythoncoverage.yml

38 wiersze
905 B
YAML

name: Python Coverage
2019-11-24 17:19:57 +00:00
2020-06-10 12:14:06 +00:00
on:
pull_request:
branches:
- master
- development
2019-11-24 17:19:57 +00:00
jobs:
2020-06-12 17:02:02 +00:00
coverage:
name: Coverage
2020-05-18 21:00:00 +00:00
runs-on: ${{ matrix.os }}
strategy:
matrix:
2020-06-12 17:38:52 +00:00
# os: [ubuntu-latest, macos-latest, windows-latest]
os: [ubuntu-latest]
2020-06-12 17:38:52 +00:00
# python-version: [3.7, 3.8]
python-version: [3.8, 3.9]
2019-11-24 17:19:57 +00:00
steps:
- uses: actions/checkout@v3
- name: Set up Python 3
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Lint with pylint
run: |
pip install pylint
pylint --exit-zero NanoVNASaver
- name: Unittests / Coverage
run: |
pip install pytest-cov
pytest --cov=NanoVNASaver