setup local cache
Some checks failed
Mypy / mypy (pull_request) Waiting to run
Pytest / pytest (3.12) (pull_request) Waiting to run
Pytest / pytest (3.13) (pull_request) Waiting to run
Pytest / pytest (3.14) (pull_request) Waiting to run
Ruff / ruff (pull_request) Waiting to run
Mypy / mypy (push) Failing after 34s
Pytest / pytest (3.12) (push) Failing after 34s
Pytest / pytest (3.13) (push) Failing after 19s
Pytest / pytest (3.14) (push) Failing after 36s
Ruff / ruff (push) Has been cancelled
Some checks failed
Mypy / mypy (pull_request) Waiting to run
Pytest / pytest (3.12) (pull_request) Waiting to run
Pytest / pytest (3.13) (pull_request) Waiting to run
Pytest / pytest (3.14) (pull_request) Waiting to run
Ruff / ruff (pull_request) Waiting to run
Mypy / mypy (push) Failing after 34s
Pytest / pytest (3.12) (push) Failing after 34s
Pytest / pytest (3.13) (push) Failing after 19s
Pytest / pytest (3.14) (push) Failing after 36s
Ruff / ruff (push) Has been cancelled
This commit is contained in:
parent
c6f3603fbf
commit
6cfa51f878
3 changed files with 13 additions and 3 deletions
5
.github/workflows/mypy.yaml
vendored
5
.github/workflows/mypy.yaml
vendored
|
|
@ -9,7 +9,10 @@ jobs:
|
|||
mypy:
|
||||
runs-on: ubuntu-latest
|
||||
env:
|
||||
UV_CACHE_DIR: /tmp/.uv-cache
|
||||
UV_CACHE_DIR: ${HOME}/.runner_cache/uv_cache
|
||||
RUNNER_TOOL_CACHE: ${HOME}/.runner_cache/tool_cache
|
||||
AGENT_TOOLSDIRECTORY: ${HOME}/.runner_cache/tool_dir
|
||||
RUN_TOOL_CACHE: ${HOME}/.runner_cache/run_tool_cache
|
||||
steps:
|
||||
- name: Install git-annex
|
||||
run: |
|
||||
|
|
|
|||
6
.github/workflows/pytest.yaml
vendored
6
.github/workflows/pytest.yaml
vendored
|
|
@ -18,7 +18,10 @@ jobs:
|
|||
|
||||
runs-on: ubuntu-latest
|
||||
env:
|
||||
UV_CACHE_DIR: /tmp/.uv-cache
|
||||
UV_CACHE_DIR: ${HOME}/.runner_cache/uv_cache
|
||||
RUNNER_TOOL_CACHE: ${HOME}/.runner_cache/tool_cache
|
||||
AGENT_TOOLSDIRECTORY: ${HOME}/.runner_cache/tool_dir
|
||||
RUN_TOOL_CACHE: ${HOME}/.runner_cache/run_tool_cache
|
||||
steps:
|
||||
- name: Setup git
|
||||
run: |
|
||||
|
|
@ -36,6 +39,7 @@ jobs:
|
|||
uses: https://github.com/actions/setup-python@v5
|
||||
with:
|
||||
python-version: ${{ matrix.python-version }}
|
||||
cache: 'pip'
|
||||
- name: Install uv
|
||||
uses: https://github.com/astral-sh/setup-uv@v5
|
||||
- name: Install corrlib
|
||||
|
|
|
|||
5
.github/workflows/ruff.yaml
vendored
5
.github/workflows/ruff.yaml
vendored
|
|
@ -10,7 +10,10 @@ jobs:
|
|||
|
||||
runs-on: ubuntu-latest
|
||||
env:
|
||||
UV_CACHE_DIR: /tmp/.uv-cache
|
||||
UV_CACHE_DIR: ${HOME}/.runner_cache/uv_cache
|
||||
RUNNER_TOOL_CACHE: ${HOME}/.runner_cache/tool_cache
|
||||
AGENT_TOOLSDIRECTORY: ${HOME}/.runner_cache/tool_dir
|
||||
RUN_TOOL_CACHE: ${HOME}/.runner_cache/run_tool_cache
|
||||
steps:
|
||||
- name: Install git-annex
|
||||
run: |
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue