Skip to content

Added yml file

Added yml file #38

Workflow file for this run

# 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
on:
push:
branches: [ "main", "dev"]
pull_request:
branches: [ "main", "dev" ]
# Allow running manually from Actions tab
workflow_dispatch:
permissions:
contents: read
jobs:
build:
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"
- name: Install package
run: |
python -m pip install --upgrade pip
python -m pip install wheel
python -m pip install flake8
python -m pip install pytest
python -m pip install -e .
- name: Lint with flake8
run: |
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
<<<<<<< HEAD

Check failure on line 38 in .github/workflows/python-app.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/python-app.yml

Invalid workflow file

You have an error in your yaml syntax on line 38
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
=======
flake8 . --count --max-complexity=10 --max-line-length=127 --statistics
>>>>>>> b9b1eb6c96fbf8d6d071c2cf8f49d476f77e06b7
- name: Test with pytest
run: |
pytest