Skip to content

Build and Test

Build and Test #884

Workflow file for this run

name: Build and Test
on:
push:
pull_request:
workflow_dispatch:
schedule:
- cron: '0 6 * * 1' # Each Monday at 06:00 UTC
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
java-version: ['17', '18']
steps:
- uses: actions/checkout@v3
- uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: ${{ matrix.java-version }}
- run: gradle build --info
- run: gradle -PTestLoggingFull=true check_translation check