mirror of
https://github.com/SonarSource/sonarqube-scan-action.git
synced 2025-12-16 10:58:28 +00:00
Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 4. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v3...v4) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
18 lines
347 B
YAML
18 lines
347 B
YAML
name: QA
|
|
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
run_qa:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
with:
|
|
token: ${{ secrets.GITHUB_TOKEN }}
|
|
- run: ./test/run-qa.sh
|
|
timeout-minutes: 5
|
|
services:
|
|
sonarqube:
|
|
image: sonarqube:8.9-community
|
|
ports:
|
|
- 9000:9000
|