We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 76b6da8 commit d4a430bCopy full SHA for d4a430b
1 file changed
.github/workflows/vfox-test.yaml
@@ -16,7 +16,7 @@ jobs:
16
runs-on: ${{ matrix.os }}
17
strategy:
18
matrix:
19
- os: [ubuntu-latest, macos-latest]
+ os: [ubuntu-latest]
20
python-version: [3.12.2]
21
mirror: ["", "https://mirrors.huaweicloud.com/python/"]
22
@@ -35,7 +35,9 @@ jobs:
35
- name: Install vfox
36
shell: bash
37
run: |
38
- curl -sSL https://raw.githubusercontent.com/version-fox/vfox/main/install.sh | bash
+ for i in {1..10}; do
39
+ curl -sSL https://raw.githubusercontent.com/version-fox/vfox/main/install.sh | bash && break || sleep 5;
40
+ done
41
vfox --version
42
43
- name: Install plugin
0 commit comments