Added translation using Weblate (Korean) #39
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This workflow will build a Java project with Ant | |
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-ant | |
name: Java CI | |
on: | |
push: | |
branches: [ javaUI ] | |
pull_request: | |
branches: [ javaUI ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install dependencies | |
run: sudo apt update && sudo apt install gettext po4a | |
- name: Set up JDK 11 | |
uses: actions/setup-java@v2 | |
with: | |
java-version: '11' | |
distribution: 'adopt' | |
- name: Test exercise solutions (Ant) | |
run: ant -noinput -buildfile build.xml test-exos | |
- name: Unit tests (Ant) | |
run: ant -noinput -buildfile build.xml test-unit | |
- name: Integration tests (Ant) | |
run: ant -noinput -buildfile build.xml test-integration | |
- name: Update translations with po4a | |
run: po4a po4a.conf | |
- name: Build jarfile (Ant) | |
run: ant -noinput -buildfile build.xml dist | |
- name: Upload jar | |
uses: actions/upload-artifact@v2 | |
with: | |
path: dist/*.jar |