Skip to content

Fixing the new project wizard #589

Fixing the new project wizard

Fixing the new project wizard #589

Workflow file for this run

name: CI
on:
push:
branches:
- idea241.x
- idea242.x
- idea243.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: "openjdk@1.17.0"
- name: Run tests
run: sbt test
shell: bash