From c4c82a9b3cb52e8f20ac14cc0d1c32331364ed68 Mon Sep 17 00:00:00 2001 From: Jack Koenig Date: Mon, 20 Dec 2021 13:22:15 -0800 Subject: Turn on unidoc checking in CI --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to '.github') diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index ce18fab0..71be8c09 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -45,7 +45,7 @@ jobs: uses: coursier/cache-action@v5 - name: Documentation (Scala 2.12 only) if: startsWith(matrix.scala, '2.12') - run: sbt ++${{ matrix.scala }} docs/mdoc + run: sbt ++${{ matrix.scala }} docs/mdoc unidoc - name: Test run: sbt ++${{ matrix.scala }} test - name: Binary compatibility -- cgit v1.2.3 From ed8c47fdcb128cf93dbd280942d1054b8dea28c0 Mon Sep 17 00:00:00 2001 From: Jack Koenig Date: Mon, 10 Jan 2022 14:43:20 -0800 Subject: Add config for generating .mergify.yml Generation script is chisel-repo-tools/scripts/mergify.sc --- .github/configs/mergify_config.yml | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 .github/configs/mergify_config.yml (limited to '.github') diff --git a/.github/configs/mergify_config.yml b/.github/configs/mergify_config.yml new file mode 100644 index 00000000..dbed4fe8 --- /dev/null +++ b/.github/configs/mergify_config.yml @@ -0,0 +1,7 @@ +# Configuration for generating .mergify.yml +conditions: + - status-success=all tests passed +branches: + - 3.2.x + - 3.3.x + - 3.4.x -- cgit v1.2.3 From bff8dc0738adafa1176f6959a33ad86f6373c558 Mon Sep 17 00:00:00 2001 From: Jack Koenig Date: Mon, 10 Jan 2022 10:42:11 -0800 Subject: Enable scalafmt in CI --- .github/workflows/test.yml | 3 +++ 1 file changed, 3 insertions(+) (limited to '.github') diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 71be8c09..dc7376a3 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -43,6 +43,9 @@ jobs: java-version: ${{ matrix.jvm }} - name: Cache Scala uses: coursier/cache-action@v5 + - name: Check Formatting (Scala 2.12 only) + if: startsWith(matrix.scala, '2.12') + run: sbt ++${{ matrix.scala }} scalafmtCheckAll - name: Documentation (Scala 2.12 only) if: startsWith(matrix.scala, '2.12') run: sbt ++${{ matrix.scala }} docs/mdoc unidoc -- cgit v1.2.3