-
Notifications
You must be signed in to change notification settings - Fork 5
57 lines (50 loc) · 1.9 KB
/
python-package.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
45
46
47
48
49
50
51
52
53
54
55
56
57
# This workflow will install Python dependencies, run tests and lint with a variety of Python versions
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: Python package
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
python-version: ["3.8", "3.10"]
os: [ubuntu-latest, ubuntu-20.04, macOS-latest]
venv_activate: ["source pyenv_base/bin/activate"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m venv pyenv_base
${{ matrix.venv_activate }}
python -m pip install --upgrade pip
python -m pip install flake8 pytest
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
python -m pip install . --upgrade
- name: Lint with flake8
run: |
${{ matrix.venv_activate }}
# stop the build if there are Python syntax errors or undefined names
flake8 ./neonwranglerpy --count --show-source --statistics
yapf -d --recursive ./neonwranglerpy --style=.style.yapf 2>&1
- name: Test with pytest
run: |
${{ matrix.venv_activate }}
pytest -v -k "not (test_retrieve_vst_dat or test_load_by_product)" --cov=./neonwranglerpy --cov-report=xml
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v1
if: matrix.os == 'ubuntu-20.04' && matrix.python-version == '3.8' && matrix.r-version == 'release'
env:
OS: ${{ runner.os }}
PYTHON: ${{ matrix.python-version }}
with:
token: ${{ secrets.CODECOV_TOKEN }}
env_vars: OS,PYTHON