Skip to content

Commit 381aac7

Browse files
committed
ci: use uv even more
1 parent 6b040dd commit 381aac7

File tree

3 files changed

+7
-15
lines changed

3 files changed

+7
-15
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,9 @@ jobs:
2727
os: ["ubuntu-latest", "macos-latest", "windows-2022"]
2828
steps:
2929
- uses: actions/checkout@v5
30-
- uses: actions/setup-python@v6
30+
- uses: astral-sh/setup-uv@v4
3131
with:
3232
python-version: ${{ matrix.python }}
33-
- uses: astral-sh/setup-uv@v4
3433
- name: Install solc-select and test dependencies
3534
run: |
3635
uv sync --extra dev

.github/workflows/lint.yml

Lines changed: 6 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -21,18 +21,12 @@ jobs:
2121
runs-on: ubuntu-latest
2222

2323
steps:
24-
- name: Checkout Code
25-
uses: actions/checkout@v5
26-
27-
- name: Set up Python 3.8
28-
uses: actions/setup-python@v6
29-
with:
30-
python-version: 3.8
31-
32-
- name: Install development dependencies
33-
run: |
34-
python -m pip install --upgrade pip
35-
pip install -e ".[dev]"
24+
- uses: actions/checkout@v5
25+
26+
- uses: astral-sh/setup-uv@v4
27+
28+
- name: Install solc-select and test dependencies
29+
run: uv sync --extra dev
3630

3731
- name: Run ruff check
3832
run: ruff check .

.github/workflows/pip-audit.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,6 @@ jobs:
3333
python -m pip install --upgrade pip setuptools wheel
3434
python -m pip install .
3535
36-
3736
- name: Run pip-audit
3837
uses: pypa/[email protected]
3938
with:

0 commit comments

Comments
 (0)