Skip to content
This repository was archived by the owner on Feb 10, 2024. It is now read-only.

Commit c74697b

Browse files
committed
Changes to .github/workflows
1 parent fb9936c commit c74697b

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

.github/workflows/build.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,14 @@ jobs:
2424
with:
2525
python-version: ${{ matrix.python-version }}
2626

27+
- name: Upgrade Pip
28+
run: pip install --upgrade pip
29+
2730
- name: Install dependencies
28-
run: pip install -r requirements.txt
31+
run: pip install --no-cache-dir -r requirements.txt
32+
33+
- name: Install build module
34+
run: pip install --no-cache-dir build
2935

3036
- name: Run tests
3137
run: python -m unittest discover -s tests

0 commit comments

Comments
 (0)