aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorEgor Tensin <Egor.Tensin@gmail.com>2022-10-15 22:55:30 +0200
committerEgor Tensin <Egor.Tensin@gmail.com>2022-10-15 22:58:45 +0200
commit9c3a072fba99f0d610478bec5b44b90861560851 (patch)
tree2b0561e06d9a05b51e9144fb7f061a0efc62d00c
parentbump dependencies (diff)
downloadcgitize-9c3a072fba99f0d610478bec5b44b90861560851.tar.gz
cgitize-9c3a072fba99f0d610478bec5b44b90861560851.zip
workflows/ci: use pip install -e .
Don't use the requirements.txt file; it doesn't fit all Python versions.
-rw-r--r--.github/workflows/ci.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 05a8f6d..32d6d88 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -25,7 +25,7 @@ jobs:
git config --global user.name 'John Doe'
git config --global user.email 'John.Doe@example.com'
- name: Install dependencies
- run: pip install -r requirements.txt
+ run: pip install -e .
- name: Integration test (local)
run: ./test/integration/local/test.sh
- name: Unit tests