Skip to content

Commit

Permalink
Merge pull request #1 from SchindlerEPFL/pipeline
Browse files Browse the repository at this point in the history
Pipeline
  • Loading branch information
MalcolmMielle committed Mar 14, 2024
2 parents d1097f7 + 317b088 commit e658dcb
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions .github/workflows/python.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
name: Python application

on:
workflow_dispatch:
pull_request:
types: [ labeled ]

permissions:
contents: read

jobs:
build:
name: Python Build
if: github.event_name == 'workflow_dispatch' || github.event.label.name == 'trigger_pipeline'
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- name: Set up Python 3.10
uses: actions/setup-python@v3
with:
python-version: "3.10"
cache: 'pip'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install flake8
- name: Lint with flake8
run: |
flake8 . --count --show-source --statistics
- run: pip install -e .
- name: Test with unittest
run: |
python -m unittest discover tests

0 comments on commit e658dcb

Please sign in to comment.