-
Notifications
You must be signed in to change notification settings - Fork 265
61 lines (51 loc) · 1.48 KB
/
ci_install-pkg.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
58
59
60
61
name: Install pkg
# see: https://help.github.com/en/actions/reference/events-that-trigger-workflows
on: # Trigger the workflow on push or pull request, but only for the main branch
push:
branches: [master]
pull_request:
branches: [master]
jobs:
pkg-check:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@master
- uses: actions/setup-python@v2
with:
python-version: 3.7
- name: Check package
run: |
python setup.py check --metadata --strict
- name: Create package
run: |
pip install --upgrade setuptools wheel
python setup.py sdist
- name: Verify package
run: |
pip install twine==3.2
twine check dist/*
python setup.py clean
pkg-install:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-20.04, macOS-10.15] #, windows-2019
python-version: [3.7] #, 3.8
steps:
- uses: actions/checkout@master
- uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Create package
run: |
python setup.py sdist
- name: Install package
run: |
pip install virtualenv
virtualenv vEnv
source vEnv/bin/activate
pip install dist/*
cd .. & python -c "import torchsampler ; print(torchsampler.__version__)"
deactivate
rm -rf vEnv