Update sbt to 2.0.2 #52
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: | |
| push: | |
| branches: [master] | |
| pull_request: | |
| branches: [master] | |
| workflow_dispatch: | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| env: | |
| JVM_VERSION: "zulu:25" | |
| jobs: | |
| build: | |
| name: Build & verify | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v7 | |
| with: | |
| submodules: false | |
| - uses: coursier/cache-action@v8 | |
| - uses: coursier/setup-action@v3.0.0 | |
| with: | |
| jvm: ${{ env.JVM_VERSION }} | |
| apps: sbt | |
| - name: Download tree-sitter-natives release | |
| id: download | |
| continue-on-error: true | |
| run: scripts/download-release.sh "$TREE_SITTER_NATIVES_VERSION" | |
| env: | |
| TREE_SITTER_NATIVES_VERSION: 0.26.8 | |
| - name: Verify sbt loads | |
| run: sbt projects | |
| - name: Package & verify JARs | |
| if: steps.download.outcome == 'success' | |
| run: | | |
| sbt packageBin | |
| scripts/verify-jars.sh |