Skip to content

Update classgraph to 4.8.168 #172

Update classgraph to 4.8.168

Update classgraph to 4.8.168 #172

Workflow file for this run

name: CI
on:
push:
paths-ignore:
- '*.md'
branches:
- main
pull_request:
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
java: [ '11', '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 +test
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; scalafmtSbtCheck; scalafix --check; test:scalafix --check"