Skip to content

Commit b2db8fa

Browse files
committed
Fix workflows
1 parent fb3fb92 commit b2db8fa

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.github/workflows/scan_apache2_server.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
python -m pip install --upgrade pip setuptools
3535
3636
- name: Install SSLyze
37-
run: python setup.py install
37+
run: python -m pip install -e .
3838

3939
- name: Scan web server
4040
run: python tests/web_servers/scan_localhost.py apache2

.github/workflows/scan_iis_server.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
python -m pip install --upgrade pip setuptools
3333
3434
- name: Install SSLyze
35-
run: python setup.py install
35+
run: python -m pip install -e .
3636

3737
- name: Scan web server
3838
run: python tests/web_servers/scan_localhost.py iis

.github/workflows/scan_nginx_server.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
python -m pip install --upgrade pip setuptools
3232
3333
- name: Install SSLyze
34-
run: python setup.py install
34+
run: python -m pip install -e .
3535

3636
- name: Scan web server
3737
run: python tests/web_servers/scan_localhost.py nginx

.github/workflows/test_module_setup.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,6 @@ jobs:
2424
2525
- name: Test SSLyze module setup
2626
run: |
27-
python setup.py install
27+
python -m pip install -e .
2828
cd docs # Switch folder to avoid conflicts between ./sslyze and the installed sslyze module
2929
python ../api_sample.py

0 commit comments

Comments
 (0)