Create pythonapp.yml

pull/110/head
Holger Müller 2019-11-24 18:19:57 +01:00 zatwierdzone przez GitHub
rodzic e27e1a90a0
commit e9a850a877
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4AEE18F83AFDEB23
1 zmienionych plików z 26 dodań i 0 usunięć

26
.github/workflows/pythonapp.yml vendored 100644
Wyświetl plik

@ -0,0 +1,26 @@
name: Python application
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Set up Python 3.8
uses: actions/setup-python@v1
with:
python-version: 3.8
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Lint with flake8
run: |
pip install pylint
pylint --exit-zero NanoVNASaver
- name: Test with pytest
run: |
python3 ./test_master.py