Pythocrates/SPyKeS

View on GitHub
.github/workflows/python-package.yml

Summary

Maintainability
Test Coverage
# This workflow will install Python dependencies, run tests and lint with a variety of Python versions
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions

name: Python package

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

jobs:
  build:

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

    steps:
      - uses: actions/checkout@v2
        with:
          fetch-depth: 0
      - name: Set up Python ${{ matrix.python-version }}
        uses: actions/setup-python@v2
        with:
          python-version: ${{ matrix.python-version }}
      - name: Install dependencies
        run: |
          python -m pip install --upgrade pip
          pip install flake8 pytest pytest-cov pytest-html
          if [ -f requirements.txt ]
          then
            pip install -r requirements.txt
          elif [ -f setup.py ]
          then
            pip install .
          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 test --cov=spykes --cov-report xml:coverage.xml --doctest-modules --junitxml=junit/test-results-${{ matrix.python-version }}.xml --html=report-${{ matrix.python-version }}.html
      - uses: codecov/codecov-action@v1
        with:
          # token: ${{ secrets.CODECOV_TOKEN }} # not required for public repos
          file: ./coverage.xml
          name: codecov-umbrella
          fail_ci_if_error: true

      - name: Test & publish code coverage to code climate
        uses: paambaati/codeclimate-action@v2.6.0
        env:
          CC_TEST_REPORTER_ID: ${{ secrets.CODE_CLIMATE_TEST_REPORTER_ID }}
        with:
          coverageCommand: pytest test --cov=spykes --cov-report xml:coverage.xml --doctest-modules --junitxml=junit/test-results-${{ matrix.python-version }}.xml --html=report-${{ matrix.python-version }}.html
          debug: true

      # Testing coveralls.io -> no support for python-coverage
      #    - name: Coveralls GitHub Action
      #      uses: coverallsapp/github-action@v1.1.2
      #      with:
      #        github-token: ${{ secrets.COVERALLS_TOKEN }}

      # Testing coveralls python
      - name: Coveralls Python
        run: pytest test --cov=spykes
      - uses: AndreMiras/coveralls-python-action@v20200413
        with:
          github-token: ${{ secrets.COVERALLS_TOKEN }}
          debug: true

      # - name: SonarCloud Scan
      #  uses: SonarSource/sonarcloud-github-action@master
      #  env:
      #    GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}  # Needed to get PR information, if any
      #    SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}