-
Notifications
You must be signed in to change notification settings - Fork 2
41 lines (38 loc) · 1.04 KB
/
testing.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
name: Development pipeline
on:
push:
paths-ignore:
- ".gitignore"
- "README.md"
- "docs/**"
pull_request:
paths-ignore:
- ".gitignore"
- "README.md"
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: ["3.11", "3.12"]
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
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: |
pylint main.py module
# - name: Test with pytest
# run: |
# pytest tests/unit/