CI #525
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: | |
| ci: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| scala-version: [ 2.13.8 ] | |
| steps: | |
| - uses: actions/[email protected] | |
| 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: [email protected] | |
| - name: gradle test ${{ github.ref }} | |
| run: ./gradlew check | |
| env: | |
| SCALA_VERSION: ${{ matrix.scala-version }} |