Update fs2-core to 3.12.2 (#1794) #817
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: Scala CI | |
| on: | |
| push: | |
| branches: | |
| - master | |
| pull_request: | |
| branches: | |
| - master | |
| jobs: | |
| test: | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: [ubuntu-latest] | |
| java: ['[email protected]'] | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: set up sbt and java | |
| uses: olafurpg/setup-scala@v13 | |
| with: | |
| java-version: ${{ matrix.java }} | |
| - name: Run tests | |
| shell: bash | |
| env: | |
| ENCRYPTION_PASSWORD: ${{secrets.ENCRYPTION_PASSWORD}} | |
| JAVA_TOOL_OPTIONS: -Dfile.encoding=UTF8 | |
| run: ./build/build.sh |