Skip to content

chore(deps): update dependency org.apache.maven.plugins:maven-failsaf… #731

chore(deps): update dependency org.apache.maven.plugins:maven-failsaf…

chore(deps): update dependency org.apache.maven.plugins:maven-failsaf… #731

Workflow file for this run

# This file was generated using Kotlin DSL (.github/kts/maven.main.kts).
# If you want to modify the workflow, please change the Kotlin file and regenerate this YAML file.
# Generated with https://github.com/typesafegithub/github-workflows-kt
name: 'Java/Maven build'
on:
push: {}
jobs:
check_yaml_consistency:
name: 'Check YAML consistency'
runs-on: 'ubuntu-latest'
steps:
- id: 'step-0'
name: 'Check out'
uses: 'actions/checkout@v3'
- id: 'step-1'
name: 'Execute script'
run: 'rm ''.github/workflows/maven.yaml'' && ''.github/kts/maven.main.kts'''
- id: 'step-2'
name: 'Consistency check'
run: 'git diff --exit-code ''.github/workflows/maven.yaml'''
build:
runs-on: 'ubuntu-latest'
needs:
- 'check_yaml_consistency'
steps:
- id: 'step-0'
name: 'Checkout'
uses: 'actions/checkout@v3'
- id: 'step-1'
name: 'Cache'
uses: 'actions/cache@v3'
with:
path: '~/.m2/repository'
key: '${{ runner.os }}-maven-${{ hashFiles(''**/pom.xml'') }}'
restore-keys: '${{ runner.os }}-maven-'
- id: 'step-2'
name: 'Set up JDK'
uses: 'actions/setup-java@v3'
with:
java-version: '17'
distribution: 'corretto'
- id: 'step-3'
name: 'Build with Maven'
run: 'mvn -B install --file pom.xml'
- id: 'step-4'
name: 'CodecovActionV3'
uses: 'codecov/codecov-action@v3'
with:
token: '${{ secrets.CODECOV_TOKEN }}'