File tree Expand file tree Collapse file tree 1 file changed +8
-4
lines changed Expand file tree Collapse file tree 1 file changed +8
-4
lines changed Original file line number Diff line number Diff line change 9
9
pre-commit :
10
10
runs-on : ubuntu-latest
11
11
steps :
12
- - uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
13
- - uses : actions/setup-python@42375524e23c412d93fb67b49958b491fce71c38 # v5.4.0
12
+ - uses : actions/checkout@v4 # Use the latest stable version tag
13
+ - uses : actions/setup-python@v5 # Use the latest stable version tag
14
14
with :
15
15
python-version : " 3.12"
16
16
- run : echo "::add-matcher::.github/workflows/matchers/actionlint.json"
17
17
- run : echo "::add-matcher::.github/workflows/matchers/mypy.json"
18
- - uses : pre-commit/action@2c7b3805fd2a0fd8c1884dcaebf91fc102a13ecd # v3.0.1
18
+ - name : Install vLLM Build Dependencies
19
+ run : pip install --requirement requirements/build.txt
20
+ - name : Install vLLM Project and Dev Dependencies
21
+ run : pip install -e ".[dev]"
22
+ - uses : pre-commit/action@v3.0.1 # Use the latest stable version tag
19
23
with :
20
- extra_args : --all-files --hook-stage manual
24
+ extra_args : --all-files --hook-stage manual
You can’t perform that action at this time.
0 commit comments