Skip to content

IntelliJ 2025.1 support #596

IntelliJ 2025.1 support

IntelliJ 2025.1 support #596

Workflow file for this run

name: CI
on:
push:
branches:
- idea242.x
- idea243.x
- idea251.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@v14
with:
java-version: "[email protected]"
- name: Run tests
run: sbt test
shell: bash