A temporary hack to fix Suggest Type Alias removing the dot in zio.
#541
Workflow file for this run
This file contains 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: | |
- idea223.x | |
- idea231.x | |
- idea232.x | |
- idea233.x | |
pull_request: | |
jobs: | |
check: | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ ubuntu-latest, macos-latest, windows-latest ] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Set up Scala | |
uses: olafurpg/setup-scala@v13 | |
with: | |
java-version: "[email protected]" | |
- name: Run tests | |
run: sbt test | |
shell: bash |