Skip to content

i18 support for spanish and english locales are added #448

i18 support for spanish and english locales are added

i18 support for spanish and english locales are added #448

Workflow file for this run

name: CI
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
java: [ 8, 11, 17, 20 ]
name: Java ${{ matrix.java }}
steps:
- uses: actions/checkout@v3
- name: Setup JDK
uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: ${{ matrix.java }}
cache: 'maven'
- name: Build with Maven
run: mvn clean verify
- name: Upload coverage to Codecov
if: matrix.java == '8'
uses: codecov/codecov-action@v3.1.1
with:
fail_ci_if_error: true