|
12 | 12 | - master |
13 | 13 |
|
14 | 14 | jobs: |
15 | | - doctest-and-lint: |
16 | | - runs-on: ubuntu-latest-turned-off-right-now |
17 | | - container: ubuntu:20.04 |
18 | | - steps: |
19 | | - - uses: actions/checkout@v2 |
20 | | - - name: Set up Python ${{ matrix.python-version }} |
21 | | - uses: actions/setup-python@v2 |
22 | | - with: |
23 | | - python-version: 3.6.15 |
| 15 | + # doctest-and-lint: |
| 16 | + # runs-on: ubuntu-latest |
| 17 | + # container: ubuntu:20.04 |
| 18 | + # steps: |
| 19 | + # - uses: actions/checkout@v2 |
| 20 | + # - name: Set up Python ${{ matrix.python-version }} |
| 21 | + # uses: actions/setup-python@v2 |
| 22 | + # with: |
| 23 | + # python-version: 3.6.15 |
24 | 24 |
|
25 | | - - name: Install pinned dependencies |
26 | | - run: | |
27 | | - python -m pip install --upgrade pip |
28 | | - 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 |
| 25 | + # - name: Install pinned dependencies |
| 26 | + # run: | |
| 27 | + # python -m pip install --upgrade pip |
| 28 | + # 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 |
29 | 29 |
|
30 | | - - name: Install Skyfield |
31 | | - run: | |
32 | | - python setup.py sdist |
33 | | - pip install -e . |
| 30 | + # - name: Install Skyfield |
| 31 | + # run: | |
| 32 | + # python setup.py sdist |
| 33 | + # pip install -e . |
34 | 34 |
|
35 | | - - name: Doctest |
36 | | - run: | |
37 | | - ./test-docs.sh |
| 35 | + # - name: Doctest |
| 36 | + # run: | |
| 37 | + # ./test-docs.sh |
38 | 38 |
|
39 | | - - name: Lint |
40 | | - run: | |
41 | | - pyflakes $(find skyfield/ -name '*.py') |
| 39 | + # - name: Lint |
| 40 | + # run: | |
| 41 | + # pyflakes $(find skyfield/ -name '*.py') |
42 | 42 |
|
43 | 43 | test: |
44 | 44 | runs-on: ubuntu-latest |
45 | 45 | container: ubuntu:20.04 |
46 | | - strategy: |
47 | | - fail-fast: false |
48 | | - matrix: |
49 | | - python: [python2, python3] |
50 | 46 |
|
51 | 47 | steps: |
52 | 48 | - uses: actions/checkout@v2 |
|
55 | 51 | run: | |
56 | 52 | apt update |
57 | 53 | apt install -y -y -q -q python3-virtualenv virtualenv |
58 | | - virtualenv -p ${{matrix.python}} V |
| 54 | + virtualenv V |
59 | 55 |
|
60 | 56 | - name: Build scripts |
61 | 57 | run: | |
|
0 commit comments