Update images #389
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 Maven | |
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven | |
name: Java CI with Maven | |
on: | |
push: | |
pull_request: | |
env: | |
LANG: "fr_FR.UTF-8" | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: SetLocale | |
run: | | |
sudo apt-get update && sudo apt-get install tzdata locales -y && sudo locale-gen fr_FR.UTF-8 | |
sudo localectl set-locale LANG="fr_FR.UTF-8" | |
export LANG="fr_FR.UTF-8" | |
sudo update-locale | |
locale -a | |
locale | |
locale -c -k LC_NUMERIC | |
localectl status | |
- name: fr_FR.UTF-8 | |
run: | | |
sudo locale-gen fr_FR.UTF-8 | |
sudo update-locale LANG=fr_FR.UTF-8 | |
git config --global gui.encoding utf-8 | |
- uses: actions/checkout@v2 | |
- name: list the directory | |
run: echo '! find $GITHUB_WORKSPACE -type f -exec file --mime {} \; | grep -v "charset=binary$" | grep -v "charset=us-ascii$" | grep -v "charset=utf-8$"' | bash | |
- name: Set up JDK 1.8 | |
uses: actions/setup-java@v1 | |
with: | |
java-version: 1.8 | |
- name: Build with Maven | |
run: mvn -B package --file pom.xml |