Skip to content
Draft
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
2 changes: 2 additions & 0 deletions .github/workflows/benchmarks.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -49,13 +49,15 @@ jobs:
working-directory: ./pr
run: |
uv sync --group test
uv audit --locked
uv run pytest --benchmark-only --benchmark-save=pr

- name: Run benchmarks on main
working-directory: ./main
continue-on-error: true
run: |
uv sync --group test
uv audit --locked
uv run pytest --benchmark-only --benchmark-save=base

- name: Compare results
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/docker.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,9 @@ jobs:
- name: Install uv
uses: astral-sh/setup-uv@v4

- name: Audit dependencies
run: uv audit --locked

- name: Set package version
run: |
VERSION=$(uvx dunamai from git --style semver)
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/docs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,9 @@ jobs:
VERSION=$(uv run hatch version)
echo "version=$VERSION" >> $GITHUB_OUTPUT

- name: Audit dependencies
run: uv audit --locked

- name: Set git credentials
run: |
git config --global user.name "${{ github.actor }}"
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/lint-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,9 @@ jobs:
- name: Install project
run: uv sync --group test --group docs

- name: Audit dependencies
run: uv audit --locked

- name: Check uv lockfile
run: uv lock --check
if: always()
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/pypi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,9 @@ jobs:
enable-cache: true
cache-dependency-glob: "uv.lock"

- name: Audit dependencies
run: uv audit --locked

- name: Build wheel
id: wheel
run: |
Expand Down
Loading