Sync from qr-paulmillr@0fbd0a4: Add ECI and inverted QR support #3
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: CI | |
| on: [pull_request] | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v6 | |
| - name: Set up Java | |
| uses: actions/setup-java@v5 | |
| with: | |
| distribution: temurin | |
| java-version: 17 | |
| cache: gradle | |
| - name: Make gradlew executable | |
| run: chmod +x gradlew | |
| - name: Update submodules | |
| run: git submodule update --init --recursive | |
| - name: Run tests | |
| run: ./gradlew test --stacktrace |