Skip to content

Commit 29e8e5f

Browse files
committed
Add actions lint check
1 parent bafbea4 commit 29e8e5f

2 files changed

Lines changed: 22 additions & 4 deletions

File tree

.github/workflows/pre_release.yaml

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,15 @@ jobs:
3232
release_type: prerelease
3333
existing_changelog_path: CHANGELOG.md
3434

35+
actions_lint_check:
36+
name: Actions lint check
37+
runs-on: ubuntu-latest
38+
steps:
39+
- name: Checkout repository
40+
uses: actions/checkout@v6
41+
- name: Run actionlint
42+
uses: rhysd/actionlint@v1.7.9
43+
3544
lint_check:
3645
name: Lint check
3746
uses: apify/workflows/.github/workflows/python_lint_check.yaml@main
@@ -52,7 +61,7 @@ jobs:
5261
python-versions: '["3.10", "3.11", "3.12", "3.13", "3.14"]'
5362
operating-systems: '["ubuntu-latest", "windows-latest"]'
5463
python-version-for-codecov: "3.14"
55-
operating-system-for-codecov: "ubuntu-latest"
64+
operating-system-for-codecov: ubuntu-latest
5665

5766
async_docstrings:
5867
name: Async dostrings check
@@ -66,7 +75,7 @@ jobs:
6675
python-versions: '["3.10", "3.14"]'
6776
operating-systems: '["ubuntu-latest"]'
6877
python-version-for-codecov: "3.14"
69-
operating-system-for-codecov: "ubuntu-latest"
78+
operating-system-for-codecov: ubuntu-latest
7079

7180
update_changelog:
7281
name: Update changelog

.github/workflows/run_code_checks.yaml

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,15 @@ on:
1212
workflow_dispatch:
1313

1414
jobs:
15+
actions_lint_check:
16+
name: Actions lint check
17+
runs-on: ubuntu-latest
18+
steps:
19+
- name: Checkout repository
20+
uses: actions/checkout@v6
21+
- name: Run actionlint
22+
uses: rhysd/actionlint@v1.7.9
23+
1524
lint_check:
1625
name: Lint check
1726
uses: apify/workflows/.github/workflows/python_lint_check.yaml@main
@@ -32,7 +41,7 @@ jobs:
3241
python-versions: '["3.10", "3.11", "3.12", "3.13", "3.14"]'
3342
operating-systems: '["ubuntu-latest", "windows-latest"]'
3443
python-version-for-codecov: "3.14"
35-
operating-system-for-codecov: "ubuntu-latest"
44+
operating-system-for-codecov: ubuntu-latest
3645

3746
async_docstrings:
3847
name: Async dostrings check
@@ -51,4 +60,4 @@ jobs:
5160
python-versions: '["3.10", "3.14"]'
5261
operating-systems: '["ubuntu-latest"]'
5362
python-version-for-codecov: "3.14"
54-
operating-system-for-codecov: "ubuntu-latest"
63+
operating-system-for-codecov: ubuntu-latest

0 commit comments

Comments
 (0)