aboutsummaryrefslogtreecommitdiffstats
path: root/.github/workflows
diff options
context:
space:
mode:
authorGravatar onerandomusername <[email protected]>2025-10-21 17:04:58 -0400
committerGravatar onerandomusername <[email protected]>2025-10-21 17:10:33 -0400
commit4f07de8ec0e7455cea06c2890243dcd44abc84fb (patch)
treea0a21f67fd1a7fd91060757b7bca3062c900ece9 /.github/workflows
parentAdd python help channel to src command whitelist (diff)
chore: assert uv lock is locked in ci and pre-commit
see https://github.com/python-discord/bot/pull/3416 for reference
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/lint.yaml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/lint.yaml b/.github/workflows/lint.yaml
index 9a782496..04a51b24 100644
--- a/.github/workflows/lint.yaml
+++ b/.github/workflows/lint.yaml
@@ -19,7 +19,7 @@ jobs:
activate-environment: true
- name: Install dependencies
- run: uv sync --frozen
+ run: uv sync --locked
# Attempt to run the bot. Setting `IN_CI` to true, so bot.run() is never called.
# This is to catch import and cog setup errors that may appear in PRs, to avoid crash loops if merged.