Skip to content

Commit

Permalink
fix again
Browse files Browse the repository at this point in the history
  • Loading branch information
dhuangnm authored and dhuangnm committed Sep 13, 2024
1 parent e456600 commit a14ee0e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/actions/test/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ runs:
with:
venv: ${{ inputs.venv }}
name: compressed
extra: "${EXTRA}"
extra: ${EXTRA}

- name: test
id: test
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -103,9 +103,9 @@ jobs:
- name: dependency
run: |
if [[ "${{ inputs.whl }}" =~ nightly ]]; then
echo 'EXTRA="[dev,accelerate]"' >> $GITHUB_ENV
echo "EXTRA=[dev,accelerate]" >> $GITHUB_ENV
else
echo 'EXTRA="[dev]"' >> $GITHUB_ENV
echo "EXTRA=[dev]" >> $GITHUB_ENV
fi
- name: run tests
Expand Down

0 comments on commit a14ee0e

Please sign in to comment.