Skip to content

Commit

Permalink
Merge pull request #1415 from ChisSoc/develop
Browse files Browse the repository at this point in the history
Workflows for Future3
  • Loading branch information
Chris authored May 15, 2021
2 parents 88931b1 + 038499e commit be6bc67
Show file tree
Hide file tree
Showing 5 changed files with 62 additions and 10 deletions.
8 changes: 0 additions & 8 deletions .github/ISSUE_TEMPLATE/future1.md

This file was deleted.

8 changes: 8 additions & 0 deletions .github/ISSUE_TEMPLATE/future3.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
---
name: Future3 Development Issue
about: For developing issues on Future3 (Version 3 pre-development)
title: "ISSUE SUMMARY on Future3"
labels: future3, bug, needs triage
---

## Issue in Future3
5 changes: 4 additions & 1 deletion .github/workflows/dockerimage.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
name: Test Install Scripts on Docker

on: [push]
on:
push:
branches-ignore:
- 'future3/**'

jobs:

Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/pythonpackage.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
name: Python Checks and Tests

on: [push]
on:
push:
branches-ignore:
- 'future3/**'

jobs:
build:
Expand Down
46 changes: 46 additions & 0 deletions .github/workflows/pythonpackage_future3.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
name: Python Checks and Tests

on:
push:
branches:
- 'future3/**'
paths:
- '**.py'
- '**.py.*'
pull_request:
branches:
- 'future3/**'
paths:
- '**.py'
- '**.py.*'

jobs:
build:

runs-on: ubuntu-latest
strategy:
max-parallel: 4
matrix:
python-version: [3.6, 3.7, 3.8]

steps:
- uses: actions/checkout@v1
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get -y libasound2-dev
python -m pip install --upgrade pip
pip install wheel
pip install spidev
pip install -r requirements.txt
- name: Lint with flake8
run: |
pip install flake8
# stop the build if there are Python syntax errors or undefined names
flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics --filename=*.py,*.py.*
# 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 --filename=*.py,*.py.*

0 comments on commit be6bc67

Please sign in to comment.