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
1 change: 0 additions & 1 deletion .github/actions/setup-python/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ runs:
with:
install: true
cache: true
install_args: "python uv"

- name: Restore uv cache
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4
Expand Down
10 changes: 6 additions & 4 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -1,10 +1,14 @@
name: CI

concurrency:
group: ${{ github.workflow }}-${{ github.ref_name }}
cancel-in-progress: true

on:
push:
branches: [main, develop]
branches: [main]
pull_request:
branches: [main, develop]
branches: [main]

permissions:
contents: read
Expand All @@ -24,7 +28,6 @@ jobs:
with:
install: true
cache: true
install_args: "\"cargo:taplo-cli\" dprint"

- name: Run formatters
run: |
Expand All @@ -44,7 +47,6 @@ jobs:
with:
install: true
cache: true
install_args: "\"cargo:taplo-cli\" \"npm:@infisical/cli\""

- name: Run linters
run: |
Expand Down
14 changes: 11 additions & 3 deletions mise.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,15 @@
[settings]
experimental = true
not_found_auto_install = false
auto_install = false
exec_auto_install = false
task_run_auto_install = false

[env]
PYTHONPATH = "."
PROJECT_NAME = "home"
ENV = "development"
MISE_LOG_LEVEL = "info"
PYTHONPATH = "."
PROJECT_NAME = "home"
ENV = "development"

# Tool configurations
RUFF_CACHE_DIR = ".ruff_cache"
Expand Down
Loading