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

39 wiersze
873 B
YAML
Czysty Zwykły widok Historia

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, ]
# python-version: [3.7, 3.8]
python-version: [3.7, ]
2019-11-24 17:19:57 +00:00
steps:
2020-05-18 21:00:00 +00:00
- uses: actions/checkout@v2
2019-11-24 17:19:57 +00:00
- name: Set up Python 3.8
2020-05-18 21:00:00 +00:00
uses: actions/setup-python@v2
2019-11-24 17:19:57 +00:00
with:
2020-05-18 21:00:00 +00:00
python-version: ${{ matrix.python-version }}
2019-11-24 17:19:57 +00:00
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
2019-11-24 17:25:46 +00:00
- name: Lint with pylint
2019-11-24 17:19:57 +00:00
run: |
pip install pylint
pylint --exit-zero NanoVNASaver
- name: Unittests / Coverage
2019-11-24 17:19:57 +00:00
run: |
pip install pytest-cov
2020-05-18 21:00:00 +00:00
pytest --cov=NanoVNASaver
2020-06-12 17:02:02 +00:00