im going to try CI

develop
Conor Walker 3 years ago committed by GitHub
parent 00a85d1bfd
commit 708cac518b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -0,0 +1,51 @@
# 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: Python application
on:
push:
branches: [ main, develop ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.10
uses: actions/setup-python@v2
with:
python-version: "3.10"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install flake8 pytest
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: PyInstaller Linux
# You may pin to the exact commit or the version.
# uses: JackMcKew/pyinstaller-action-linux@38639c352a36917eea765f9283bfd1092c28af7b
uses: JackMcKew/pyinstaller-action-linux@0.1.4
with:
# Directory containing source code & .spec file (optional requirements.txt).
path: ''
# Specify a custom URL for PYPI
pypi_url: https://pypi.python.org/
# Specify a custom URL for PYPI Index
pypi_index_url: https://pypi.python.org/simple
# Specify a file path for .spec file
spec: ''
# Specify whether to install Tkinter or not
tkinter: false
Loading…
Cancel
Save