We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fdb126c commit e089cabCopy full SHA for e089cab
.github/workflows/package-install.yml
@@ -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