Skip to content

Commit 50d9e65

Browse files
authored
Upgrade GitHub Actions and refine dependency install
Updated GitHub Actions workflow to use newer action versions and improved dependency installation.
1 parent 21ff49a commit 50d9e65

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/tests.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,16 +11,16 @@ jobs:
1111
python-version: [3.11, 3.12, 3.13]
1212

1313
steps:
14-
- uses: actions/checkout@v2
14+
- uses: actions/checkout@v5
1515
- name: Set up Python ${{ matrix.python-version }}
16-
uses: actions/setup-python@v2
16+
uses: actions/setup-python@v6
1717
with:
1818
python-version: ${{ matrix.python-version }}
1919
- name: Install dependencies
2020
run: |
2121
python -m pip install --upgrade pip
2222
pip install flake8 pytest requests sortedcontainers
23-
python setup.py install
23+
pip install
2424
- name: Test with pytest
2525
run: |
2626
pytest tests/

0 commit comments

Comments
 (0)