-
Notifications
You must be signed in to change notification settings - Fork 1
66 lines (60 loc) · 2.12 KB
/
python-app.yml
File metadata and controls
66 lines (60 loc) · 2.12 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
# This workflow will install Python dependencies, run tests and lint with a single version of Python
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: LcdTools
on:
push:
branches: ["main"]
# tags:
# - "v*.*.*"
pull_request:
branches: ["main"]
permissions:
contents: write
jobs:
build:
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
name: build-${{ matrix.os }}-binary
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.10
uses: actions/setup-python@v3
with:
python-version: "3.10"
- name: Install windows dependencies
if: ${{ contains(matrix.os, 'windows') }}
run: |
python -m pip install --upgrade pip
pip install flake8 pytest pyinstaller
if (Test-Path -Path requirements.txt) {pip install -r requirements.txt}
- name: Install dependencies
if: ${{ ! contains(matrix.os, 'windows') }}
run: |
python -m pip install --upgrade pip
pip install flake8 pytest pyinstaller
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Lint with flake8
run: |
# stop the build if there are Python syntax errors or undefined names
flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
# - name: Test with pytest
# run: |
# pytest
- name: Build application
run: |
pyinstaller main.spec
- name: Upload a Build Artifact
uses: actions/upload-artifact@v3.1.0
with:
name: lcdtoolds-${{ matrix.os }}
path: dist/main*
# - name: GH Release
# uses: softprops/action-gh-release@v0.1.14
# with:
# body: ${{ github.event.head_commit.message }}
# files: |
# dist/main