Skip to content

Commit e3a4104

Browse files
committed
Merge branch 'release/v.1.1.6'
2 parents baceec0 + b90a4bd commit e3a4104

File tree

9 files changed

+476
-9
lines changed

9 files changed

+476
-9
lines changed

.github/workflows/pytest.yml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
# This workflow will install Python dependencies, run tests and lint with a single version of Python
2+
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
3+
4+
name: Python application
5+
6+
on: [push]
7+
8+
jobs:
9+
build:
10+
11+
runs-on: ubuntu-latest
12+
13+
steps:
14+
- uses: actions/checkout@v2
15+
- name: Set up Python 3.10
16+
uses: actions/setup-python@v2
17+
with:
18+
python-version: "3.10"
19+
- name: Install dependencies
20+
run: |
21+
python -m pip install --upgrade pip
22+
pip install -r dev-requirements.txt
23+
- name: Test with pytest
24+
run: |
25+
pytest
26+
- name: Analysing the code with pylint
27+
run: |
28+
pylint $(git ls-files '*.py')

0 commit comments

Comments
 (0)