File tree Expand file tree Collapse file tree 2 files changed +27
-1
lines changed
Expand file tree Collapse file tree 2 files changed +27
-1
lines changed Original file line number Diff line number Diff line change 77 runs-on : ubuntu-latest
88 strategy :
99 matrix :
10- python-version : ["3.8", "3.9", "3.10 "]
10+ python-version : ["3.x "]
1111 steps :
1212 - uses : actions/checkout@v4
1313 - name : Set up Python ${{ matrix.python-version }}
Original file line number Diff line number Diff line change 1+ name : Pytest
2+
3+ on : [push]
4+
5+ jobs :
6+ build :
7+ runs-on : ubuntu-latest
8+ strategy :
9+ matrix :
10+ python-version : ["3.x"]
11+
12+ steps :
13+ - uses : actions/checkout@v3
14+ - name : Set up Python ${{ matrix.python-version }}
15+ uses : actions/setup-python@v4
16+ with :
17+ python-version : ${{ matrix.python-version }}
18+ - name : Install dependencies
19+ run : |
20+ python -m pip install --upgrade pip
21+ if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
22+ - name : Test with pytest
23+ run : |
24+ python setup.py install
25+ pip install -U pytest
26+ pytest
You can’t perform that action at this time.
0 commit comments