Skip to content

added d

added d #2

Workflow file for this run

name: Build on Windows
on: [push, pull_request]
jobs:
build:
name: Build exe
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: '3.x'
architecture: 'x64'
- name: Install requirements
run: |
pip install -r requirements.txt
- name: Build application
run: |
python --version