Skip to content

Commit 2240745

Browse files
authored
Update pull-request.yml
1 parent 98a505d commit 2240745

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/pull-request.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,9 @@ on:
1010
branches:
1111
- main
1212

13+
permissions:
14+
contents: read
15+
1316
jobs:
1417
build:
1518
runs-on: ubuntu-latest
@@ -34,7 +37,8 @@ jobs:
3437
python${{ matrix.python-version }} -m pip install --upgrade pip packaging wheel
3538
python${{ matrix.python-version }} -m pip install `grep numpy== requirements/ubuntu-latest_py${{ matrix.python-version }}_extras.txt`
3639
python${{ matrix.python-version }} -m pip install -r requirements/ubuntu-latest_py${{ matrix.python-version }}_extras.txt
37-
python${{ matrix.python-version }} -m pip install --no-deps .
40+
python${{ matrix.python-version }} -m pip install --upgrade pip
41+
python${{ matrix.python-version }} -m pip install --no-deps .[server]
3842
- name: Test modules
3943
run: python${{ matrix.python-version }} -m pytest tests
4044
- name: Test example apps

0 commit comments

Comments
 (0)