ttvduw.XlsxDataFeeder._get_ws_key_record_rows: 在读入表格数据前无条件地执行 ws.res… #10
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
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions | |
name: Python application | |
on: | |
push: | |
branches: [ main ] | |
paths: | |
- '*.py' | |
- '.github/workflows/python-app.yml' | |
release: | |
branches: [ main ] | |
jobs: | |
build: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: "3.10" | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install -r requirements.txt | |
- name: Build TTVDUW.exe | |
run: | | |
pyinstaller --path . --name TTVDUW app_main.py | |
- name: 'Upload Artifact' | |
uses: actions/upload-artifact@v2 | |
with: | |
name: dist | |
path: dist/TTVDUW | |
retention-days: 5 |