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
2 changes: 1 addition & 1 deletion .github/workflows/docs.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Documentation

Check warning on line 1 in .github/workflows/docs.yaml

View workflow job for this annotation

GitHub Actions / linting

1:1 [document-start] missing document start "---"

Check warning on line 1 in .github/workflows/docs.yaml

View workflow job for this annotation

GitHub Actions / linting

1:1 [document-start] missing document start "---"

on:
push:
Expand All @@ -14,7 +14,7 @@
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4

- name: Cache tox
uses: actions/cache@6849a6489940f00c2f30c0fb92c6274307ccb58a # v4
uses: actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4
with:
path: .tox
key: tox-${{ hashFiles('pyproject.toml') }}
Expand All @@ -22,9 +22,9 @@
- name: Set up Python
uses: actions/setup-python@0b93645e9fea7318ecaed2b359559ac225c90a2b # v5
with:
python-version: "3.x"

Check failure on line 25 in .github/workflows/docs.yaml

View workflow job for this annotation

GitHub Actions / linting

25:27 [quoted-strings] string value is redundantly quoted with double quotes

Check failure on line 25 in .github/workflows/docs.yaml

View workflow job for this annotation

GitHub Actions / linting

25:27 [quoted-strings] string value is redundantly quoted with double quotes
cache: "pip"

Check failure on line 26 in .github/workflows/docs.yaml

View workflow job for this annotation

GitHub Actions / linting

26:18 [quoted-strings] string value is redundantly quoted with double quotes

Check failure on line 26 in .github/workflows/docs.yaml

View workflow job for this annotation

GitHub Actions / linting

26:18 [quoted-strings] string value is redundantly quoted with double quotes
cache-dependency-path: "pyproject.toml"

Check failure on line 27 in .github/workflows/docs.yaml

View workflow job for this annotation

GitHub Actions / linting

27:34 [quoted-strings] string value is redundantly quoted with double quotes

Check failure on line 27 in .github/workflows/docs.yaml

View workflow job for this annotation

GitHub Actions / linting

27:34 [quoted-strings] string value is redundantly quoted with double quotes

- name: Install tox
run: python -m pip install tox
Expand All @@ -42,5 +42,5 @@
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: site
publish_branch: gh-pages
user_name: "github-actions[bot]"

Check failure on line 45 in .github/workflows/docs.yaml

View workflow job for this annotation

GitHub Actions / linting

45:22 [quoted-strings] string value is redundantly quoted with double quotes

Check failure on line 45 in .github/workflows/docs.yaml

View workflow job for this annotation

GitHub Actions / linting

45:22 [quoted-strings] string value is redundantly quoted with double quotes
user_email: "github-actions[bot]@users.noreply.github.com"

Check failure on line 46 in .github/workflows/docs.yaml

View workflow job for this annotation

GitHub Actions / linting

46:23 [quoted-strings] string value is redundantly quoted with double quotes

Check failure on line 46 in .github/workflows/docs.yaml

View workflow job for this annotation

GitHub Actions / linting

46:23 [quoted-strings] string value is redundantly quoted with double quotes
2 changes: 1 addition & 1 deletion .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Tests

Check warning on line 1 in .github/workflows/tests.yaml

View workflow job for this annotation

GitHub Actions / linting

1:1 [document-start] missing document start "---"

Check warning on line 1 in .github/workflows/tests.yaml

View workflow job for this annotation

GitHub Actions / linting

1:1 [document-start] missing document start "---"

on:
push:
Expand All @@ -22,7 +22,7 @@
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4

- name: Cache tox
uses: actions/cache@6849a6489940f00c2f30c0fb92c6274307ccb58a # v4
uses: actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4
with:
path: .tox
key: tox-${{hashFiles('pyproject.toml') }}
Expand Down
Loading