Skip to content

Commit fb69388

Browse files
committed
dev(hansbug): try fix all these errors
1 parent 388628e commit fb69388

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

.github/workflows/test.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ jobs:
9696
run: |
9797
make unittest WORKERS=${WORKERS}
9898
- name: Upload coverage to Codecov
99-
uses: codecov/codecov-action@v3
99+
uses: codecov/codecov-action@v1
100100
with:
101101
token: ${{ secrets.CODECOV_TOKEN }}
102102
file: ./coverage.xml
@@ -181,12 +181,14 @@ jobs:
181181
java-version: ${{ matrix.java-version }}
182182
distribution: temurin
183183
- name: Install dependencies
184+
shell: bash
184185
run: |
185186
pip install --upgrade pip
186187
pip install --upgrade flake8 setuptools wheel twine
187188
pip install -r requirements.txt
188189
pip install -r requirements-test.txt
189190
- name: Test the basic environment
191+
shell: bash
190192
run: |
191193
python -V
192194
pip --version
@@ -197,13 +199,14 @@ jobs:
197199
cloc plantuml
198200
cloc test
199201
- name: Run unittest
202+
shell: bash
200203
env:
201204
PLANTUML_JAR_VERSION: ${{ matrix.plantuml-version }}
202205
TIMEOUT: '30'
203206
run: |
204207
make unittest WORKERS=${WORKERS}
205208
- name: Upload coverage to Codecov
206-
uses: codecov/codecov-action@v3
209+
uses: codecov/codecov-action@v1
207210
with:
208211
token: ${{ secrets.CODECOV_TOKEN }}
209212
file: ./coverage.xml

0 commit comments

Comments
 (0)