We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8d84f4e commit db86bcdCopy full SHA for db86bcd
2 files changed
.github/actions/install_requirements/action.yml
@@ -6,7 +6,7 @@ inputs:
6
default: "dev"
7
uv-sync:
8
description: Parameters to pass to uv sync
9
- default: "--locked --no-dev"
+ default: "--locked"
10
11
runs:
12
using: composite
@@ -34,11 +34,3 @@ runs:
34
- name: Report what was installed
35
run: uv pip freeze
36
shell: bash
37
-
38
- - name: Add venv path to Github environment
39
- run: echo "VENV_PATH=.venv" >> $GITHUB_ENV
40
- shell: bash
41
42
- - name: Add venv path to Github Path
43
- run: echo "${{ env.VENV_PATH }}/bin:$PATH" >> $GITHUB_PATH
44
.github/workflows/_test.yml
@@ -48,7 +48,7 @@ jobs:
48
uses: ./.github/actions/install_requirements
49
with:
50
python-version: ${{ inputs.python-version }}
51
- uv-sync: "--locked"
+ uv-sync: ""
52
53
- name: Run tests
54
run: tox -e tests
0 commit comments