Remove branding_url from Agency and Route, route_bikes_allowed from Route #561
Workflow file for this run
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
name: CI | |
on: | |
push: | |
pull_request: | |
branches: [ master ] | |
jobs: | |
unit-tests: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
locale: [ "en_US.utf8", "fr_FR.utf8" ] | |
env: | |
LANG: ${{ matrix.locale }} | |
MAVEN_ARGS: "--no-transfer-progress" | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set locale to ${{ matrix.locale }} | |
run: | | |
lang=`echo "${{ matrix.locale }}" | head -c 2` | |
sudo apt-get -qq install -y language-pack-${lang} | |
echo "" | |
# list installed locales | |
echo "Available locales" | |
locale -a | |
sudo locale-gen ${{ matrix.locale }} | |
sudo update-locale LANG=${{ matrix.locale }} | |
- run: date | |
- uses: actions/setup-java@v4 | |
with: | |
distribution: 'temurin' | |
java-version: '17' | |
cache: 'maven' | |
- name: Test project with Maven | |
run: mvn test package | |
cli-integration-tests: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-java@v4 | |
with: | |
distribution: 'temurin' | |
java-version: '17' | |
cache: 'maven' | |
- name: Run CLI integration tests | |
run: ./cli-tests/cli-tests.sh |