aboutsummaryrefslogtreecommitdiffstats
path: root/.github/workflows/tests.yml
diff options
context:
space:
mode:
authorMR Lemon <matt@matthewlemon>2020-05-17 16:56:50 +0100
committerMR Lemon <matt@matthewlemon>2020-05-17 16:56:50 +0100
commit0be19f4430de00e52a08cc116fd8daab0c5ecbca (patch)
tree1abe2d015a6a188deb6b05c9302afd046fb305ab /.github/workflows/tests.yml
parent8de1958b5030715bf4ff5c87142c4536bb5451a8 (diff)
fifth...
Diffstat (limited to '.github/workflows/tests.yml')
-rw-r--r--.github/workflows/tests.yml15
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