Skip to content

Commit

Permalink
Merge pull request #18 from jbouwh/validation-action
Browse files Browse the repository at this point in the history
Add python validation action
  • Loading branch information
jbouwh authored Jun 7, 2024
2 parents 454c3ce + 50238a4 commit c68c2f0
Show file tree
Hide file tree
Showing 2 changed files with 48 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .flake8
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# .flake8 file for https://github.com/zxdavb
# .flake8 file for https://github.com/jbouwh/incomfort-client

[flake8]
# max-line-length as used by black
Expand Down
47 changes: 47 additions & 0 deletions .github/workflows/validate.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
# This workflow will install Python dependencies, run tests and lint with a single version of Python
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python

name: Python application validation

on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]

permissions:
contents: read

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- name: Set up Python 3.12
uses: actions/setup-python@v3
with:
python-version: "3.12"
- 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
if [ -f requirements-dev.txt ]; then pip install -r requirements-dev.txt; fi
- name: Lint with flake8
run: |
# stop the build if there are Python syntax errors or undefined names
flake8 . --count --select=C,E,F,W,B,B950 --ignore=E203,E501,W503 --show-source --statistics
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=88 --statistics
- name: "Check formatting 1: black"
run: |
black --diff --check *client.py
black --diff --check incomfort*
- name: "Check formatting 2: isort"
run: |
isort --check --diff *client.py
isort --check --diff incomfort*
- name: Test with pytest
run: |
pytest

0 comments on commit c68c2f0

Please sign in to comment.