We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7ffa299 commit a5c02f4Copy full SHA for a5c02f4
1 file changed
.github/workflows/test.yml
@@ -21,18 +21,16 @@ jobs:
21
python: [3.10.11]
22
23
steps:
24
- - uses: actions/checkout@v2
+ - uses: actions/checkout@v4
25
- name: Setup Python
26
- uses: actions/setup-python@v2
+ uses: actions/setup-python@v5
27
with:
28
- python-version: ${{ matrix.python }}
29
- - name: Install Tox
30
- run: pip install tox
31
- - name: Setup Java
32
- uses: actions/setup-java@v3
33
- with:
34
- distribution: 'temurin'
35
- java-version: '11'
36
- - name: Run Tox
37
- # Run tox using the version of Python in `PATH`
38
- run: tox -e py -v
+ python-version: '3.11'
+ - name: Install dependencies
+ run: |
+ python -m pip install --upgrade pip
+ pip install -r requirements.txt
+ - name: Test with pytest
+ pip install pytest
+ pytest tests.py
0 commit comments