Skip to content

Commit

Permalink
Use double quotes
Browse files Browse the repository at this point in the history
  • Loading branch information
zhiqwang committed Dec 13, 2021
1 parent 3133a1d commit 93158a6
Showing 1 changed file with 7 additions and 8 deletions.
15 changes: 7 additions & 8 deletions .github/workflows/ci-test.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
# Copyright (c) 2020, Zhiqiang Wang. All Rights Reserved.
# GH actions
# Copyright (c) 2020, yolort team. All rights reserved.

name: CI testing

Expand All @@ -14,14 +13,14 @@ jobs:
runs-on: ${{ matrix.image }}
strategy:
matrix:
image: [ 'ubuntu-latest' ]
torch: [ '1.9.1+cpu', '1.10.0+cpu' ]
image: [ "ubuntu-latest" ]
torch: [ "1.9.1+cpu", "1.10.0+cpu" ]
include:
- torch: '1.9.1+cpu'
- torch: "1.9.1+cpu"
torch_address: torch==1.9.1+cpu torchvision==0.10.1+cpu -f https://download.pytorch.org/whl/torch_stable.html
unittest_type: --cov=test --cov-report=xml
torchvision: release/0.10
- torch: '1.10.0+cpu'
- torch: "1.10.0+cpu"
torch_address: torch==1.10.0+cpu torchvision==0.11.1+cpu -f https://download.pytorch.org/whl/cpu/torch_stable.html
unittest_type: --cov=test --cov-report=xml
torchvision: release/0.11
Expand All @@ -33,7 +32,7 @@ jobs:
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: '3.8'
python-version: "3.8"

- name: Upgrade pip
run: |
Expand All @@ -48,7 +47,7 @@ jobs:
uses: actions/cache@v2
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
key: ${{ runner.os }}-pip-${{ hashFiles("**/requirements.txt") }}
restore-keys: |
${{ runner.os }}-pip-
Expand Down

0 comments on commit 93158a6

Please sign in to comment.