Skip to content

Commit

Permalink
chore(deps): pre-commit.ci autoupdate (#30)
Browse files Browse the repository at this point in the history
* chore(deps): pre-commit.ci autoupdate

updates:
- [github.com/astral-sh/ruff-pre-commit: v0.6.2 → v0.6.3](astral-sh/ruff-pre-commit@v0.6.2...v0.6.3)
- [github.com/pre-commit/mirrors-mypy: v1.11.1 → v1.11.2](pre-commit/mirrors-mypy@v1.11.1...v1.11.2)
- [github.com/PyCQA/pylint: v3.2.6 → v3.2.7](pylint-dev/pylint@v3.2.6...v3.2.7)
- [github.com/crate-ci/typos: v1.23.7 → typos-dict-v0.11.27](crate-ci/typos@v1.23.7...typos-dict-v0.11.27)

* fix ci

---------

Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
Co-authored-by: Markus Hofauer <[email protected]>
  • Loading branch information
pre-commit-ci[bot] and hofbi authored Sep 3, 2024
1 parent f2d8e58 commit 2a1fcd6
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 7 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,9 @@ jobs:
make coverage
cd ..
- uses: actions/upload-artifact@v4
if: ${{ matrix.compiler }} == 'clang'
with:
path: build/ccov/all-merged
name: artifacts-cpp
name: artifacts-cpp-${{ matrix.compiler }}

python:
runs-on: ubuntu-latest
Expand All @@ -43,6 +42,8 @@ jobs:
with:
python-version: '3.12'
- name: Install dependencies
env:
UV_SYSTEM_PYTHON: 1
run: |
curl -LsSf https://astral.sh/uv/install.sh | sh
uv pip install -r requirements.txt
Expand Down Expand Up @@ -103,7 +104,7 @@ jobs:
mv artifacts-slides/* public
mv artifacts-docs/* public
mkdir -p public/coverage
mv artifacts-cpp public/coverage/cpp
mv artifacts-cpp-clang public/coverage/cpp
mv artifacts-python/ public/coverage/python
mkdir -p public/export
make package
Expand Down
8 changes: 4 additions & 4 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ repos:
additional_dependencies: [cmakelang]
exclude: cmake/.*
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.6.2
rev: v0.6.3
hooks:
- id: ruff
- id: ruff-format
Expand All @@ -127,12 +127,12 @@ repos:
- flake8-bugbear # Ruff does not implement all of bugbear
- flake8-requirements # Not yet implemented https://github.com/astral-sh/ruff/issues/4100
- repo: https://github.com/pre-commit/mirrors-mypy
rev: v1.11.1
rev: v1.11.2
hooks:
- id: mypy
args: [--python-version, '3.10']
- repo: https://github.com/PyCQA/pylint
rev: v3.2.6
rev: v3.2.7
hooks:
- id: pylint
- repo: https://github.com/asottile/pyupgrade
Expand All @@ -153,6 +153,6 @@ repos:
hooks:
- id: check-github-workflows
- repo: https://github.com/crate-ci/typos
rev: v1.23.7
rev: typos-dict-v0.11.27
hooks:
- id: typos

0 comments on commit 2a1fcd6

Please sign in to comment.