Actions

Continuous integration: Difference between revisions

From LimeSurvey Manual

 
Line 4: Line 4:


* Be proactive rather than reactive
* Be proactive rather than reactive
* Identify hotspots
* Identify hotspots for refactoring efforts
* Reduce the risk of bugs and regressions
* Reduce the risk of bugs and regressions



Latest revision as of 23:55, 10 October 2021

Continuous integration (CI) is the concept of running tests and checks on each push, to reduce different risks related to the development cycle.

Motivation

  • Be proactive rather than reactive
  • Identify hotspots for refactoring efforts
  • Reduce the risk of bugs and regressions

Goal: Code quality is not allowed to decrease.

Parts

  1. Syntax check
  2. PSR-12
  3. Type check
  4. Unused variables
  5. Tests
    1. Unit tests
    2. Functional tests (with fixture)
    3. Integrity tests (with scripted browser)

Todo:

  • Metrics
  • Test coverage
  • Code duplication

Tools

todo

Metrics

todo