Fix Unicode characters and prevent them in the future in PC lists #105
Workflow file for this run
This file contains hidden or 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: Continuous integration | |
| on: | |
| pull_request: | |
| push: | |
| concurrency: | |
| group: ${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| build_gradle: | |
| name: "JDK ${{ matrix.java }} on ${{ matrix.os }}" | |
| strategy: | |
| matrix: | |
| include: | |
| - os: ubuntu-latest | |
| java: 21 | |
| - os: macos-latest | |
| java: 21 | |
| fail-fast: false | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - name: Check out sources | |
| uses: actions/checkout@v4 | |
| - name: 'Set up JDK ${{ matrix.java }}' | |
| uses: actions/setup-java@v4 | |
| with: | |
| java-version: ${{ matrix.java }} | |
| distribution: 'temurin' | |
| - name: Setup Gradle | |
| uses: gradle/actions/setup-gradle@v4 | |
| - name: Run and check formatting | |
| run: ./gradlew build run | |
| - name: Check for Unicode characters | |
| run: cd data && python3 check_for_unicode.py && cd .. |