Skip to content

SFD-5448 Contract tests in postcode API not running #929

SFD-5448 Contract tests in postcode API not running

SFD-5448 Contract tests in postcode API not running #929

Workflow file for this run

name: Check code format and quality
'on':
push:
branches:
- master
pull_request:
types:
- opened
- synchronize
- reopened
jobs:
check-code-quality:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Check text files format
run: |
build/automation/etc/githooks/scripts/editorconfig-pre-commit.sh
- name: Check Python files format
run: |
build/automation/etc/githooks/scripts/python-code-pre-commit.sh
- name: Check Terraform files format
run: |
build/automation/etc/githooks/scripts/terraform-format-pre-commit.sh
- name: Set up JDK 11
uses: actions/setup-java@v1
with:
java-version: 11
- name: Cache Maven packages
uses: actions/cache@v1
with:
path: ~/.m2
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
restore-keys: ${{ runner.os }}-m2
- name: Build and analyze with SonarQube
run: mvn -B verify org.sonarsource.scanner.maven:sonar-maven-plugin:sonar -Pcoverage
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}