Skip to content

Commit 9f4c43d

Browse files
committed
Add build task back into actions
1 parent d24d2ea commit 9f4c43d

File tree

1 file changed

+26
-26
lines changed

1 file changed

+26
-26
lines changed

.github/workflows/ci.yml

Lines changed: 26 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99

1010
jobs:
1111

12-
convert:
12+
convert csv to md:
1313
runs-on: ${{ matrix.os }}
1414
strategy:
1515
matrix:
@@ -37,28 +37,28 @@ jobs:
3737
git diff --exit-code || git commit -am "commit code_contributions_record.md"
3838
git push
3939
40-
# build:
41-
#
42-
# runs-on: ${{ matrix.os }}
43-
# strategy:
44-
# matrix:
45-
# os: [ubuntu-latest, macos-latest, windows-latest]
46-
# python-version: [3.8]
47-
#
48-
# steps:
49-
# - uses: actions/checkout@v2
50-
# - name: Set up Python ${{ matrix.python-version }}
51-
# uses: actions/setup-python@v2
52-
# with:
53-
# python-version: ${{ matrix.python-version }}
54-
# - name: Install dependencies
55-
# run: |
56-
# python -m pip install --upgrade pip
57-
# pip install wheel flake8 pytest codecov
58-
# pip install ".[test]"
59-
# - name: Test with pytest
60-
# run: |
61-
# coverage run -m pytest
62-
# - name: Upload coverage to codecov
63-
# run: |
64-
# codecov
40+
build:
41+
42+
runs-on: ${{ matrix.os }}
43+
strategy:
44+
matrix:
45+
os: [ubuntu-latest, macos-latest, windows-latest]
46+
python-version: [3.8]
47+
48+
steps:
49+
- uses: actions/checkout@v2
50+
- name: Set up Python ${{ matrix.python-version }}
51+
uses: actions/setup-python@v2
52+
with:
53+
python-version: ${{ matrix.python-version }}
54+
- name: Install dependencies
55+
run: |
56+
python -m pip install --upgrade pip
57+
pip install wheel flake8 pytest codecov
58+
pip install ".[test]"
59+
- name: Test with pytest
60+
run: |
61+
coverage run -m pytest
62+
- name: Upload coverage to codecov
63+
run: |
64+
codecov

0 commit comments

Comments
 (0)