Skip to content

Commit e089cab

Browse files
Create package-install.yml
1 parent fdb126c commit e089cab

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: Test Installation
2+
3+
on: [workflow_dispatch, push, pull_request]
4+
5+
jobs:
6+
tests:
7+
runs-on: ubuntu-latest
8+
strategy:
9+
fail-fast: false
10+
matrix:
11+
python-version:
12+
- 3.8
13+
14+
name: Check installation with python ${{ matrix.python-version }}
15+
steps:
16+
- uses: actions/checkout@v2
17+
18+
- name: Setup python ${{ matrix.python-version }}
19+
uses: actions/setup-python@v2
20+
with:
21+
python-version: ${{ matrix.python-version }}
22+
23+
- name: Update pip
24+
run: pip install --upgrade pip
25+
26+
- name: Install package
27+
run: python -m pip install -e .[test]

0 commit comments

Comments
 (0)