Skip to content

Commit 52d478b

Browse files
authored
remove git remote newline and avoid lint (#56)
1 parent efcfda0 commit 52d478b

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

.github/workflows/run-tests.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,10 @@ jobs:
2424
repository: ${{ github.event.pull_request.head.repo.full_name }}
2525
# add the fork upstream for the remote
2626
- name: Add fork remote
27-
run: >
28-
git remote add upstream https://github.com/
29-
${{ github.event.pull_request.head.repo.full_name }}.git
27+
# yamllint disable rule:line-length
28+
run: |
29+
git remote add upstream https://github.com/${{ github.event.pull_request.head.repo.full_name }}.git
30+
# yamllint enable rule:line-length
3031
# run pre-commit
3132
- name: Python setup
3233
uses: actions/setup-python@v5

.pre-commit-config.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ repos:
4545
- id: yamllint
4646
exclude: pre-commit-config.yaml
4747
- repo: https://github.com/astral-sh/ruff-pre-commit
48-
rev: "v0.12.8"
48+
rev: "v0.12.12"
4949
hooks:
5050
- id: ruff-format
5151
- id: ruff
@@ -54,7 +54,7 @@ repos:
5454
hooks:
5555
- id: actionlint
5656
- repo: https://github.com/software-gardening/almanack
57-
rev: v0.1.6
57+
rev: v0.1.8
5858
hooks:
5959
- id: almanack-check
6060
- repo: https://gitlab.com/vojko.pribudic.foss/pre-commit-update

0 commit comments

Comments
 (0)