Skip to content
Merged

Ci #69

Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/check-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:

- name: Install pytorch
run: |
if [[ "${{ matrix.torch }}" == "main" ]]; then
if [ "${{ matrix.torch }}" = "main" ]; then
python -m pip install --pre torch torchvision torchaudio --index-url https://download.pytorch.org/whl/nightly/cpu
else
echo "install torch==${{ matrix.torch }}"
Expand All @@ -37,7 +37,7 @@ jobs:

- name: Install transformers ${{ matrix.transformers }}
run: |
if [[ "${{ matrix.transformers }}" == "main" ]]; then
if [ "${{ matrix.transformers }}" = "main" ]; then
echo "install transformers from github"
git clone https://github.com/huggingface/transformers.git
cd transformers
Expand Down
Loading