Skip to content

Support file and package exclusions for Scala 3.4.2+ #331

Support file and package exclusions for Scala 3.4.2+

Support file and package exclusions for Scala 3.4.2+ #331

Workflow file for this run

name: CI
on:
push:
paths-ignore:
- '*.md'
branches:
- main
- V2
pull_request:
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
java: [ '8', '17' ]
os: [ 'ubuntu-latest' ]
steps:
- name: checkout the repo
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up JVM
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: ${{ matrix.java }}
- name: Run tests
run: sbt scripted
formatting:
runs-on: ubuntu-latest
steps:
- name: checkout the repo
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up JVM
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: '11'
- name: Check Formatting
run: sbt scalafmtCheckAll