Skip to content

Commit

Permalink
Fix usage of env varaible in github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
simw committed Jan 31, 2025
1 parent 12df294 commit c2de600
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- name: Install uv
uses: astral-sh/setup-uv@v3
with:
version: "$UV_VERSION"
version: $UV_VERSION
- run: make lint

test:
Expand All @@ -35,7 +35,7 @@ jobs:
- name: Install uv
uses: astral-sh/setup-uv@v3
with:
version: "$UV_VERSION"
version: $UV_VERSION
- run: make test
- run: python3 -m pip install nox && make test-dep-versions

Expand All @@ -52,7 +52,7 @@ jobs:
- name: Install uv
uses: astral-sh/setup-uv@v3
with:
version: "$UV_VERSION"
version: $UV_VERSION
- name: check GITHUB_REF matches package version
uses: samuelcolvin/check-python-version@v3
with:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
- name: Install uv
uses: astral-sh/setup-uv@v3
with:
version: "$UV_VERSION"
version: $UV_VERSION

- name: Lint
run: make lint
Expand All @@ -45,7 +45,7 @@ jobs:
- name: Install uv
uses: astral-sh/setup-uv@v3
with:
version: "$UV_VERSION"
version: $UV_VERSION

- name: Run tests
run: make test
Expand Down

0 comments on commit c2de600

Please sign in to comment.