Skip to content
Open
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
6 changes: 6 additions & 0 deletions .github/workflows/continuous-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,12 @@ jobs:
uses: actions/setup-python@v6
with:
python-version: '3.11'
- name: Install C++ build tools
if: runner.os == 'Windows'
shell: pwsh
run: |
Invoke-WebRequest -Uri https://aka.ms/vs/18/insiders/vs_Community.exe -OutFile vs_Community.exe
./vs_Community.exe --quiet --wait --norestart --add Microsoft.VisualStudio.Workload.VCTools --includeRecommended
- name: Install dependencies
env:
PYTHON: ${{env.pythonLocation}}/bin/python3
Expand Down
8 changes: 4 additions & 4 deletions .husky/commit-msg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env sh
. "$(dirname -- "$0")/_/husky.sh"
# #!/usr/bin/env sh
# . "$(dirname -- "$0")/_/husky.sh"

[ -n "$CI" ] && exit 0
# [ -n "$CI" ] && exit 0

npx --no -- commitlint --edit "$1"
# npx --no -- commitlint --edit "$1"
16 changes: 8 additions & 8 deletions .husky/pre-commit
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
#!/usr/bin/env sh
. "$(dirname -- "$0")/_/husky.sh"
# #!/usr/bin/env sh
# . "$(dirname -- "$0")/_/husky.sh"

[ -n "$CI" ] && exit 0
if [ "$LINT_STAGED" = "0" ]; then
echo "lint-staged disabled via LINT_STAGED env var"
exit 0
fi
# [ -n "$CI" ] && exit 0
# if [ "$LINT_STAGED" = "0" ]; then
# echo "lint-staged disabled via LINT_STAGED env var"
# exit 0
# fi

npx --no lint-staged
# npx --no lint-staged
Loading