From 1281fb40c22bf30ccfcbef4397e5ad3081d85589 Mon Sep 17 00:00:00 2001 From: Hugh Simpson Date: Sat, 2 Mar 2024 15:43:30 +0000 Subject: [PATCH] add lint check --- .github/workflows/ci.yml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 042e40690..fb608ca8d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -1,6 +1,6 @@ name: Test all the things -on: [push, pull_request] +on: [ push, pull_request ] jobs: ci: @@ -18,3 +18,10 @@ jobs: apps: sbt - name: Test run: sbt -v ";+core/test;+instrumentation/test;+reporters/test" + lint: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v1 + - name: Test + run: sbt -v "scalafmtCheckAll" +