Skip to content

Commit cbacb25

Browse files
committed
tweak ci settings
1 parent 5bd957c commit cbacb25

File tree

1 file changed

+12
-11
lines changed

1 file changed

+12
-11
lines changed

.github/workflows/ci.yaml

Lines changed: 12 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,24 @@
1-
name: Python package
1+
name: Run tests
22

33
on: [push]
44

55
jobs:
66
build:
77

88
runs-on: ubuntu-latest
9-
strategy:
10-
# You can use PyPy versions in python-version.
11-
# For example, pypy-2.7 and pypy-3.8
12-
matrix:
13-
python-version: ["2.7", "3.7", "3.8", "3.9", "3.10"]
149

1510
steps:
1611
- uses: actions/checkout@v3
17-
- name: Set up Python ${{ matrix.python-version }}
12+
- name: Set up Python
1813
uses: actions/setup-python@v4
1914
with:
20-
python-version: ${{ matrix.python-version }}
21-
# You can test your matrix by printing the current Python version
22-
- name: Display Python version
23-
run: python -c "import sys; print(sys.version)"
15+
python-version: "3.10"
16+
17+
- name: Install dependencies
18+
run: |
19+
python setup.py develop
20+
21+
- name: Test
22+
run: |
23+
stty cols 90
24+
pytest

0 commit comments

Comments
 (0)