SONAR-14822 Write an IT

This commit is contained in:
Wouter Admiraal 2021-05-14 15:11:31 +02:00 committed by GitHub
parent 71de302835
commit 8ba0f61ef0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 93 additions and 0 deletions

18
.github/workflows/qa.yml vendored Normal file
View file

@ -0,0 +1,18 @@
name: QA
on: push
jobs:
run_qa:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
token: ${{ secrets.GITHUB_TOKEN }}
- run: ./test/run-qa.sh
timeout-minutes: 5
services:
sonarqube:
image: sonarqube:8.9-community
ports:
- 9000:9000