Skip to content

Commit d53bb31

Browse files
committed
Update the CI workflow
1 parent 76932d3 commit d53bb31

File tree

2 files changed

+13
-2
lines changed

2 files changed

+13
-2
lines changed

.github/workflows/ci.yml

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,9 @@ jobs:
1818
with:
1919
persist-credentials: false
2020

21+
- name: Install build essentials
22+
run: sudo apt-get --yes install build-essential
23+
2124
- name: Set up Python
2225
uses: actions/setup-python@v2
2326
with:
@@ -42,12 +45,15 @@ jobs:
4245
with:
4346
persist-credentials: false
4447

48+
- name: Install build essentials
49+
run: sudo apt-get --yes install build-essential
50+
4551
- name: Set up Python
4652
uses: actions/setup-python@v2
4753

4854
- name: Install dependencies
4955
run: |
50-
pip install pipenv
56+
pip install pip==19.0.3 pipenv==2018.11.26
5157
pipenv install --dev
5258
5359
- name: Build the documentation
@@ -72,12 +78,15 @@ jobs:
7278
with:
7379
persist-credentials: false
7480

81+
- name: Install build essentials
82+
run: sudo apt-get --yes install build-essential
83+
7584
- name: Set up Python
7685
uses: actions/setup-python@v2
7786

7887
- name: Install dependencies
7988
run: |
80-
pip install pipenv
89+
pip install pip==19.0.3 pipenv==2018.11.26
8190
pipenv install --dev
8291
8392
- name: Create the distribution
@@ -97,3 +106,4 @@ jobs:
97106
with:
98107
tag_name: ${{ github.ref }}
99108
release_name: Release ${{ github.ref }}
109+

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
*.py[cod]
33

44
.coverage
5+
.github/workflows/*.jnj
56
.pylintrc
67
.python-version
78
Pipfile.lock

0 commit comments

Comments
 (0)