Update release-drafter/release-drafter action to v7 #144
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: | |
| ciJvms: | |
| runs-on: ubuntu-24.04 | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| java: [ '1.8', '11', '17' ] | |
| steps: | |
| - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 | |
| with: | |
| fetch-depth: 100 | |
| - name: Fetch tags | |
| run: git fetch --depth=100 origin +refs/tags/*:refs/tags/* | |
| - uses: olafurpg/setup-scala@v14 | |
| with: | |
| java-version: ${{ matrix.java }} | |
| - name: Coursier cache | |
| uses: coursier/cache-action@v7 | |
| - name: sbt ci ${{ github.ref }} | |
| run: ./sbt ci | |
| ci: | |
| runs-on: ubuntu-24.04 | |
| needs: [ ciJvms ] | |
| steps: | |
| - name: Aggregate of lint, and all tests | |
| run: echo "ci passed" |