-
Notifications
You must be signed in to change notification settings - Fork 10
44 lines (41 loc) · 1.12 KB
/
development.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
name: Development pipeline
on:
push:
paths-ignore:
- ".gitignore"
- "README.md"
- "docs/**"
pull_request:
paths-ignore:
- ".gitignore"
- "README.md"
- "docs/**"
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: ["3.9", "3.10"]
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
if [ -f requirements_dev.txt ]; then pip install -r requirements_dev.txt; fi
- name: Setup environment
run: |
mv config/settings.yaml.dist config/settings.yaml
- name: Lint with pylint
run: |
pip3 install pylint
pylint main.py module
# - name: Test with pytest
# run: |
# pip3 install pytest
# pytest tests