Update run_tests.yml #60
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "Build Windows Executable" | |
on: | |
push: | |
branches: [ release ] | |
jobs: | |
build: | |
runs-on: windows-2019 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: 3.8 | |
- name: Install pip and cx-freeze | |
run: python -m pip install --upgrade pip pipenv setuptools cx-freeze==6.13.1 | |
- name: Install SSLyze dependencies | |
run: | | |
python -m pip install . | |
python -m pip uninstall sslyze -y | |
- name: Build Windows executable | |
run: python setup.py build_exe | |
- uses: actions/upload-artifact@v2 | |
with: | |
path: ./build/* |