Skip to content

Commit

Permalink
chore: make venv
Browse files Browse the repository at this point in the history
  • Loading branch information
wakamex committed Apr 15, 2024
1 parent 87d8cdf commit ad6d08e
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,8 @@ jobs:
- name: Install Dependencies
run: |
python -m pip install --upgrade uv
uv venv .venv
source .venv/bin/activate
uv pip install .[lint]
- name: Run Black
Expand Down Expand Up @@ -52,6 +54,8 @@ jobs:
- name: Install Dependencies
run: |
python -m pip install --upgrade uv
uv venv .venv
source .venv/bin/activate
uv pip install .[lint,test]
- name: Run MyPy
Expand Down Expand Up @@ -91,7 +95,8 @@ jobs:
- name: Install Dependencies
run: |
python -m pip install --upgrade uv
uv pip uninstall eth-ape --yes
uv venv .venv
source .venv/bin/activate
uv pip install .[test]
- name: Run Tests
Expand All @@ -114,6 +119,8 @@ jobs:
- name: Install Dependencies
run: |
python -m pip install --upgrade uv
uv venv .venv
source .venv/bin/activate
uv pip install --pre .[test]
- name: Run Tests
Expand Down

0 comments on commit ad6d08e

Please sign in to comment.