Skip to content

Update python-package.yml #40

Update python-package.yml

Update python-package.yml #40

# This workflow will install Python dependencies, run tests and lint with a variety of Python versions
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python
name: Naticord CI/CD
on:
push:
branches: [ "dev" ]
pull_request:
branches: [ "dev" ]
jobs:
build:
runs-on: windows-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.4.10", "3.5.10", "3.6.15", "3.7", "3.8", "3.9", "3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
py -m pip install --upgrade pip
py -m pip install pyqt5 requests pyinstaller
- name: Build with pyinstaller
run: |
pyinstaller --noconsole --onefile naticord.py
ls dist/
- name: Upload naticord
uses: actions/upload-artifact@v4.3.3
with:
name: naticord-client.exe
path: dist/naticord
compression-level: 0