-
Notifications
You must be signed in to change notification settings - Fork 0
54 lines (51 loc) · 1.57 KB
/
pythonpackage.yml
File metadata and controls
54 lines (51 loc) · 1.57 KB
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
name: Python package
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.8]
steps:
- uses: actions/checkout@v2
with:
lfs: true
- uses: actions/cache@v1
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('**/setup.cfg') }}
restore-keys: |
${{ runner.os }}-pip-
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
if [ "$RUNNER_OS" == "Linux" ]; then
sudo apt-get update
elif [ "$RUNNER_OS" == "macOS" ]; then
brew install pkg-config
fi
python3 -m pip install --upgrade pip
pip3 install -r requirements.txt -r requirements.ci.txt
pip3 install .
pip3 check
- name: Static tests
run: |
pylint src/kbest_assignment/*.py -d fixme --ignore-patterns version.py,__config__.py
- name: Test with pytest
run: |
pytest tests/ -v -x
- name: Build wheel
run: |
python3 setup.py bdist_wheel
- name: Upload wheel to release
if: contains(github.ref, 'tags/v') && matrix.python-version == '3.8'
uses: svenstaro/upload-release-action@v1-release
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: dist/*.whl
tag: ${{ github.ref }}
overwrite: true
file_glob: true