diff options
author | MR Lemon <matt@matthewlemon> | 2020-05-17 16:56:50 +0100 |
---|---|---|
committer | MR Lemon <matt@matthewlemon> | 2020-05-17 16:56:50 +0100 |
commit | 0be19f4430de00e52a08cc116fd8daab0c5ecbca (patch) | |
tree | 1abe2d015a6a188deb6b05c9302afd046fb305ab /.github | |
parent | 8de1958b5030715bf4ff5c87142c4536bb5451a8 (diff) |
fifth...
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/tests.yml | 15 |
1 files changed, 11 insertions, 4 deletions
diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index bd208fc..1d04bb9 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -19,19 +19,26 @@ jobs: runs-on: windows-latest steps: - - uses: actions/checkout@v2 - - name: Set up Python 3.7 + - name: Checkout repo + uses: actions/checkout@v2 + + - name: Install Python 3.7 uses: actions/setup-python@v1 with: python-version: 3.7 architecture: x64 + + - name: Print Version + run: python --version + - name: Install dependencies run: | pip install poetry==1.0.5 - poetry install - pip install -e . + poetry update + - name: Build with pyinstaller run: python -m PyInstaller.__main__ cli.py --name "dm" --onefile + - uses: actions/upload-artifact@master with: name: Windows |