mirror of
https://github.com/pre-commit/action.git
synced 2026-04-07 14:56:54 +00:00
feat: switch to using uv instead of pip
This commit is contained in:
parent
576ff52938
commit
a8df2899ac
3 changed files with 18 additions and 16 deletions
10
.github/workflows/main.yml
vendored
10
.github/workflows/main.yml
vendored
|
|
@ -6,8 +6,14 @@ on:
|
|||
jobs:
|
||||
main:
|
||||
runs-on: ubuntu-latest
|
||||
strategy:
|
||||
matrix:
|
||||
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- uses: actions/setup-python@v3
|
||||
- uses: actions/checkout@v4
|
||||
- name: Install uv with Python ${{ matrix.python-version }}
|
||||
uses: astral-sh/setup-uv@v5
|
||||
with:
|
||||
python-version: ${{ matrix.python-version }}
|
||||
- name: self test action
|
||||
uses: ./
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue