Skip to content

Commit

Permalink
static-code-analysis-for-master: Add static code analysis
Browse files Browse the repository at this point in the history
  • Loading branch information
eriknellessen authored and Erik Nellessen committed Jan 10, 2022
1 parent b026bb6 commit f61a24f
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,13 @@

image: gcc

stages:
- build
- test

include:
- template: Code-Quality.gitlab-ci.yml

build:
stage: build
# instead of calling g++ directly you can also use some build toolkit like make
Expand All @@ -35,3 +42,12 @@ build:
# stage: test
# script:
# - ./runmytests.sh

code_quality:
before_script:
- ''
stage: test
variables:
REPORT_FORMAT: html
artifacts:
paths: [gl-code-quality-report.html]

0 comments on commit f61a24f

Please sign in to comment.