Skip to content

Commit c4598a9

Browse files
committed
Add actions lint check and add fixes
1 parent 7f9521d commit c4598a9

File tree

2 files changed

+12
-2
lines changed

2 files changed

+12
-2
lines changed

.github/workflows/release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ jobs:
5757

5858
update_changelog:
5959
name: Update changelog
60-
needs: [release_metadata, lint_check, type_check, unit_tests]
60+
needs: [release_metadata, lint_check, type_check]
6161
uses: apify/workflows/.github/workflows/python_bump_and_update_changelog.yaml@main
6262
with:
6363
version_number: ${{ needs.release_metadata.outputs.version_number }}

.github/workflows/run_code_checks.yaml

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,15 @@ on:
1717
workflow_dispatch:
1818

1919
jobs:
20+
actions_lint_check:
21+
name: Actions lint check
22+
runs-on: ubuntu-latest
23+
steps:
24+
- name: Checkout repository
25+
uses: actions/checkout@v6
26+
- name: Run actionlint
27+
uses: rhysd/[email protected]
28+
2029
lint_check:
2130
name: Lint check
2231
uses: apify/workflows/.github/workflows/python_lint_check.yaml@main
@@ -34,11 +43,12 @@ jobs:
3443
uses: apify/workflows/.github/workflows/python_unit_tests.yaml@add-code-cov-to-python
3544
secrets:
3645
httpbin_url: ${{ secrets.APIFY_HTTPBIN_TOKEN && format('https://httpbin.apify.actor?token={0}', secrets.APIFY_HTTPBIN_TOKEN) || 'https://httpbin.org'}}
46+
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
3747
with:
3848
python-versions: '["3.10", "3.11", "3.12", "3.13", "3.14"]'
3949
operating-systems: '["ubuntu-latest", "windows-latest", "macos-latest"]'
4050
python-version-for-codecov: "3.14"
41-
operating-system-for-codecov: "ubuntu-latest"
51+
operating-system-for-codecov: ubuntu-latest
4252

4353
docs_check:
4454
name: Docs check

0 commit comments

Comments
 (0)