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
10 changes: 8 additions & 2 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,10 @@ updates:
# Enable version updates for development dependencies
directory: "/"
schedule:
interval: "monthly"
interval: "cron"
cronjob: "0 0 1 */3 *" # Run once every 3 months
cooldown:
default-days: 7
versioning-strategy: "increase-if-necessary"
groups:
dev-deps:
Expand All @@ -20,7 +23,10 @@ updates:
# Enable version updates for GitHub Actions
directory: "/"
schedule:
interval: "monthly"
interval: "cron"
cronjob: "0 0 1 */3 *" # Run once every 3 months
cooldown:
default-days: 7
groups:
github-actions:
patterns:
Expand Down
8 changes: 8 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,8 @@ jobs:
persist-credentials: false
- name: Install uv
uses: astral-sh/setup-uv@08807647e7069bb48b6ef5acd8ec9567f424441b # 8.1.0
with:
enable-cache: false
- name: Install tox
run: uv tool install tox --with tox-uv
- name: Setup SocketCAN
Expand Down Expand Up @@ -85,6 +87,8 @@ jobs:
persist-credentials: false
- name: Install uv
uses: astral-sh/setup-uv@08807647e7069bb48b6ef5acd8ec9567f424441b # 8.1.0
with:
enable-cache: false
- name: Install tox
run: uv tool install tox --with tox-uv
- name: Run linters
Expand All @@ -103,6 +107,8 @@ jobs:
persist-credentials: false
- name: Install uv
uses: astral-sh/setup-uv@08807647e7069bb48b6ef5acd8ec9567f424441b # 8.1.0
with:
enable-cache: false
- name: Install tox
run: uv tool install tox --with tox-uv
- name: Build documentation
Expand All @@ -119,6 +125,8 @@ jobs:
persist-credentials: false
- name: Install uv
uses: astral-sh/setup-uv@08807647e7069bb48b6ef5acd8ec9567f424441b # 8.1.0
with:
enable-cache: false
- name: Build wheel and sdist
run: uv build
- name: Check build artifacts
Expand Down
25 changes: 0 additions & 25 deletions .mergify.yml

This file was deleted.

Loading