We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 43d1011 commit e58e507Copy full SHA for e58e507
1 file changed
.github/workflows/unit_tests.yml
@@ -29,15 +29,16 @@ jobs:
29
- uses: actions/checkout@v3
30
31
# use github python action instead of uv to take advantage of caching
32
- - name: Set up Python ${{ matrix.python-version }}
+ - name: Set up Python ${{ matrix.python }}
33
uses: actions/setup-python@v4
34
with:
35
python-version: ${{ matrix.python }}
36
- cache: 'pip'
37
- cache-dependency-path: '**/pyproject.toml'
38
39
- name: Install uv
40
uses: astral-sh/setup-uv@v5
+ with:
+ enable-cache: true
41
+ cache-dependency-glob: "pyproject.toml"
42
43
- name: Install package with dependencies
44
run: uv sync --all-extras --dev
0 commit comments