Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/build-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
uv sync --only-group=nox --locked
- name: Run Nox 🦊
run:
uv run nox -s ${{ matrix.session }}
uv run --no-sync nox -s ${{ matrix.session }}
test:
name: Run tests
runs-on: ubuntu-latest
Expand All @@ -53,7 +53,7 @@ jobs:
uv sync --only-group=nox --locked
- name: Run Nox 🦊
run:
uv run nox -s test
uv run --no-sync nox -s test
- name: Upload coverage reports to Codecov ⛱️
uses: codecov/codecov-action@v5.4.0
env:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
enable-cache: true
- name: Get the package version 🔖
id: package-version
run: echo "package-version=$(uv run python ./scripts/package_version.py)" >> "$GITHUB_OUTPUT"
run: echo "package-version=$(uv run --no-sync python ./scripts/package_version.py)" >> "$GITHUB_OUTPUT"
pypi-publish:
needs: get-release-tag
name: Upload to PyPI
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/sync-api-backup.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
uv sync --no-dev --locked
- name: Run the `sync` command 🚀
run:
uv run gitmojis sync
uv run --no-sync gitmojis sync
- name: Create pull request 🎉
uses: peter-evans/create-pull-request@v7.0.8
with:
Expand Down
Loading