Add README (#6) #12
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: [ main ] | |
| pull_request: | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v5 | |
| with: | |
| # fetch tags - tags are needed for versionPolicyCheck binary and source compat checks | |
| fetch-tags: true | |
| - uses: coursier/cache-action@v6 | |
| - uses: actions/setup-java@v5 | |
| with: | |
| java-version: 17 | |
| distribution: temurin | |
| cache: sbt | |
| - uses: sbt/setup-sbt@v1 | |
| - name: sbt build | |
| run: sbt clean build |