Skip to content

Initial support for IntelliJ 2024.1 #547

Initial support for IntelliJ 2024.1

Initial support for IntelliJ 2024.1 #547

Workflow file for this run

name: CI
on:
push:
branches:
- idea231.x
- idea232.x
- idea233.x
- idea241.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