Skip to content

Merge pull request #108 from simplelocalize/update-dependencies #428

Merge pull request #108 from simplelocalize/update-dependencies

Merge pull request #108 from simplelocalize/update-dependencies #428

Workflow file for this run

name: Run tests
on:
pull_request:
push:
branches:
- master
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
env:
ACTIONS_ALLOW_UNSECURE_COMMANDS: true
jobs:
run_tests:
name: "Run tests"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-java@v4
name: "Install Java"
with:
java-version: '21'
distribution: 'corretto'
cache: 'maven'
- name: Cache SonarCloud packages
uses: actions/cache@v4
with:
path: ~/.sonar/cache
key: ${{ runner.os }}-sonar
restore-keys: ${{ runner.os }}-sonar
- name: "Test with Maven"
run: mvn --settings .maven.xml clean install -B -V
- name: "SonarCloud Analyze"
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
run: mvn clean -B verify -Ptest org.sonarsource.scanner.maven:sonar-maven-plugin:sonar