Skip to content

Commit 3522b0c

Browse files
committed
gh-actions update
1 parent cc6e920 commit 3522b0c

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed

.github/workflows/ci.yml

+7-4
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ jobs:
66
lint:
77
runs-on: ubuntu-latest
88
steps:
9-
- uses: actions/setup-python@v1
9+
- uses: actions/setup-python@v2
1010
with:
1111
python-version: "3.x"
1212
- uses: actions/checkout@v2
@@ -25,16 +25,19 @@ jobs:
2525
matrix:
2626
python-version: [3.6, 3.7, 3.8]
2727
steps:
28-
- uses: actions/setup-python@v1
28+
- uses: actions/setup-python@v2
2929
with:
3030
python-version: ${{ matrix.python-version }}
3131
- uses: actions/checkout@v2
32+
with:
33+
lfs: true
3234
# eigen for accupy, blas for numpy
3335
- name: Install dependencies
3436
run: sudo apt-get install -y libeigen3-dev libblas-dev # python3-vtk7
3537
- name: Test with tox
3638
run: |
3739
pip install tox
3840
tox
39-
# - name: Submit to codecov
40-
# run: bash <(curl -s https://codecov.io/bash)
41+
- name: Submit to codecov
42+
if: ${{ matrix.python-version == '3.8' }}
43+
run: bash <(curl -s https://codecov.io/bash)

0 commit comments

Comments
 (0)