Merge pull request #108 from pretix/chore/link-vnext-history #121
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: Build | |
| on: | |
| push: | |
| # prevent duplicate runs on the same branch | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.sha }} | |
| cancel-in-progress: true | |
| jobs: | |
| publish: | |
| name: Build | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| matrix: | |
| os: [ubuntu-latest, windows-latest, macos-latest] | |
| steps: | |
| - name: Check out code | |
| uses: actions/checkout@v6 | |
| with: | |
| submodules: true # needed for libpretixsync and libpretixprint | |
| - name: Set up JDK 23 | |
| uses: actions/setup-java@v5 | |
| with: | |
| java-version: "23" | |
| distribution: "temurin" | |
| - name: Setup Gradle | |
| uses: gradle/actions/setup-gradle@v6 | |
| - name: Gradle build | |
| working-directory: ./pretixscan | |
| run: ./gradlew :composeApp:build |