Skip to content

Commit

Permalink
maybe this will work
Browse files Browse the repository at this point in the history
  • Loading branch information
erewok committed Aug 30, 2024
1 parent 2e02f84 commit 490855a
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 8 deletions.
11 changes: 5 additions & 6 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,13 +28,12 @@ jobs:
with:
tool: just
- uses: "actions/checkout@v3"
- uses: "actions/setup-python@v4"
with:
python-version: "${{ matrix.python-version }}"
- name: "Install uv"
run: "pip install uv"
- name: Set up uv
# Install latest uv version using the installer
run: curl -LsSf https://astral.sh/uv/install.sh | sh

- name: "Run install deps"
run: "just bootstrap"
run: "just bootstrap ${{ matrix.python-version }}"
- name: "Run code quality checks"
run: "just check"
- name: "Run tests"
Expand Down
4 changes: 2 additions & 2 deletions justfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ _default:
just --list

# Create a virtual environment and install dependencies
bootstrap:
uv venv --python 3.12
bootstrap default="3.12":
uv venv --python {{default}}

# Build the project as a package
build *args:
Expand Down

0 comments on commit 490855a

Please sign in to comment.