Skip to content

Commit c05a001

Browse files
committed
gha test 1
1 parent 8564d9a commit c05a001

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/cli-verify-json-pr.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ on:
1717
description: 'Specify pull request number associated with the commit. Optional, but recommended when providing a commit hash (sha)'
1818
required: false
1919
test_suite:
20-
description: "Specify test suite to run from the 'tests/integration' directory. Examples: 'cli', 'domains', 'events', etc. If not provided, all suites are executed"
20+
description: "Specify test suite to run from the 'tests/integration' directory. Examples: 'cli', 'domains', 'events', etc. If not provided, all suites are executed"
2121
required: false
2222
run_long_tests:
2323
description: "Select 'True' to include long-running tests (e.g., database provisioning, server rebuilds). Defaults to 'False'"
@@ -52,19 +52,19 @@ jobs:
5252
- name: Set up Python
5353
uses: actions/setup-python@v5
5454
with:
55-
python-version: "3.9"
55+
python-version: "3.10"
5656

5757
- name: Get JSON Spec Path
5858
run: echo "JSON_SPEC_PATH=$(pwd)/json-spec/spec.json" >> $GITHUB_ENV
5959

6060
- name: Install Linode CLI dependencies
6161
run: |
6262
cd linode-cli
63-
SPEC=$JSON_SPEC_PATH make install
63+
SPEC="$JSON_SPEC_PATH" make install
6464
6565
- name: Run CLI E2E Tests
6666
run: |
6767
cd linode-cli
6868
make test-int TEST_SUITE="${{ inputs.test_suite }}" RUN_LONG_TESTS="${{ inputs.run_long_tests }}"
6969
env:
70-
LINODE_CLI_TOKEN: ${{ env.LINODE_CLI_TOKEN }}
70+
LINODE_CLI_TOKEN: ${{ secrets.LINODE_CLI_TOKEN }}

0 commit comments

Comments
 (0)