Skip to content

Commit a3e118b

Browse files
Activate virtualenv each time
1 parent 52335ca commit a3e118b

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

.github/workflows/ci.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,22 +24,29 @@ jobs:
2424
virtualenv V
2525
2626
- name: Install pinned dependencies
27+
shell: bash
2728
run: |
2829
source ./V/bin/activate
2930
python -m pip install --upgrade pip
3031
pip install astropy==3.0.1 docutils==0.17.1 matplotlib==3.3.0 numpy==1.15.4 pandas==1.0.0 pyflakes scipy==1.2.2 sphinx==1.7.2 spktype21
3132
3233
- name: Install Skyfield
34+
shell: bash
3335
run: |
36+
source ./V/bin/activate
3437
python setup.py sdist
3538
pip install -e .
3639
3740
- name: Doctest
41+
shell: bash
3842
run: |
43+
source ./V/bin/activate
3944
./test-docs.sh
4045
4146
- name: Lint
47+
shell: bash
4248
run: |
49+
source ./V/bin/activate
4350
pyflakes $(find skyfield/ -name '*.py')
4451
4552
test:

0 commit comments

Comments
 (0)