Skip to content

Commit

Permalink
fixed names
Browse files Browse the repository at this point in the history
  • Loading branch information
kozlov721 committed Dec 19, 2023
1 parent 2478024 commit 01f568d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@ jobs:
call-reusable-workflow:
uses: luxonis/luxonis-ml/.github/workflows/luxonis-ml-ci.yaml@feature/custom-pre-commit-hooks
with:
os: 'ubuntu-latest, macos-latest'
python_version: '3.8, 3.9'
os: 'ubuntu-latest,macos-latest'
python: '3.8,3.9'
src_dir: 'src/luxonis_ml'
4 changes: 2 additions & 2 deletions .github/workflows/pre-commit.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ jobs:
steps:
- id: set-matrix
run: |
os_list=$(echo "${{ inputs.os }}" | jq -R -s -c 'split(",")')
python_list=$(echo "${{ inputs.python_version }}" | jq -R -s -c 'split(",")')
os_list=$(echo "${{ inputs.os }}" | xargs | jq -R -s -c 'split(",")')
python_list=$(echo "${{ inputs.python }}" | xargs | jq -R -s -c 'split(",")')
echo "os-matrix=$os_list" >> $GITHUB_ENV
echo "python-matrix=$python_list" >> $GITHUB_ENV
Expand Down

0 comments on commit 01f568d

Please sign in to comment.