We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 21ff49a commit 50d9e65Copy full SHA for 50d9e65
.github/workflows/tests.yml
@@ -11,16 +11,16 @@ jobs:
11
python-version: [3.11, 3.12, 3.13]
12
13
steps:
14
- - uses: actions/checkout@v2
+ - uses: actions/checkout@v5
15
- name: Set up Python ${{ matrix.python-version }}
16
- uses: actions/setup-python@v2
+ uses: actions/setup-python@v6
17
with:
18
python-version: ${{ matrix.python-version }}
19
- name: Install dependencies
20
run: |
21
python -m pip install --upgrade pip
22
pip install flake8 pytest requests sortedcontainers
23
- python setup.py install
+ pip install
24
- name: Test with pytest
25
26
pytest tests/
0 commit comments