1 parent d37b4f4 commit af361a6Copy full SHA for af361a6
1 file changed
.github/workflows/python-tests.yml
@@ -14,18 +14,18 @@ jobs:
14
python-version: [3.10, 3.11]
15
16
steps:
17
- - uses: actions/checkout@v4
+ - uses: actions/checkout@v5
18
19
- name: Set up Python
20
- uses: actions/setup-python@v4
+ uses: actions/setup-python@v5
21
with:
22
python-version: ${{ matrix.python-version }}
23
24
- name: Install dependencies
25
run: |
26
python -m pip install --upgrade pip
27
# install package and dev extras (pytest)
28
- pip install .[dev]
+ pip install -e '.[dev]'
29
30
- name: Run tests
31
0 commit comments