Skip to content

Update LICENSE

Update LICENSE #7

Workflow file for this run

on:
push:
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest]
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v4
with:
python-version: '3.10'
- run: pip install -r requirements.txt pyinstaller
- run: pyinstaller main.py
- uses: actions/upload-artifact@v2
with:
path: dist/*